begin mg tut framework in be

This commit is contained in:
2024-07-31 23:56:27 -07:00
parent 9b79a3796b
commit becc234263
12 changed files with 60 additions and 5 deletions

6
backend/app/__init__.py Normal file
View File

@ -0,0 +1,6 @@
from flask import Flask
app = Flask(__name__)
from app import routes

7
backend/app/routes.py Normal file
View File

@ -0,0 +1,7 @@
from app import app
@app.route('/')
@app.route('/index')
def index():
return "Hello, World!"