a terrible but somewhat functional state

This commit is contained in:
2026-01-11 17:50:32 -07:00
parent 9dbd72f4ee
commit 7b5a49979e
12 changed files with 9814 additions and 26 deletions

View File

@@ -19,15 +19,12 @@ def create_app(test_config=None):
except OSError:
pass
@app.route('/hello')
def hello():
return "'Ello, Wurld!"
from . import db
db.init_app(app)
from . import weather
app.register_blueprint(weather.bp)
app.add_url_rule('/', endpoint='index')
app.add_url_rule('/api', endpoint='api')
return app