This commit is contained in:
2022-11-17 21:02:53 +03:00
commit 8442294982
7 changed files with 379 additions and 0 deletions

8
backend/main.py Normal file
View File

@@ -0,0 +1,8 @@
from flask import Blueprint
main = Blueprint("main", __name__)
@main.route("/")
def index():
return "Nice!", 200