update 0.1

This commit is contained in:
ada-dmitry
2023-08-22 14:32:09 +03:00
parent ad034254ca
commit 6b33df6081
3 changed files with 48 additions and 0 deletions
+14
View File
@@ -7,6 +7,20 @@ app = Flask(__name__)
def hello_world(): # put application's code here
return 'Hello World!'
@app.route('/create_game')
def create(str truechatid):
@app.route('/start_game')
def start(): # Команда принимает на вход
@app.route('/action')
def action():
if __name__ == '__main__':
app.run()