13 lines
312 B
Python
13 lines
312 B
Python
from presenter.Presenter import Presenter
|
|
|
|
|
|
def init_chat():
|
|
print('Witamy w systemie elektronicznej rezerwacji Biletów! W czym mogę pomóc?')
|
|
user_input = input()
|
|
result = Presenter().process_user_input(user_input)
|
|
for r in result:
|
|
print(r)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
init_chat() |