remove hello world

This commit is contained in:
cube
2026-03-16 01:47:34 +00:00
parent 7e2c656a2d
commit 2f499674ff

View File

@@ -20,11 +20,6 @@ def create_app(test_config=None):
# ensure the instance folder exists
os.makedirs(app.instance_path, exist_ok=True)
# a simple page that says hello
@app.route('/hello')
def hello():
return 'Hello, World!'
from . import db
db.init_app(app)