Start repo

This commit is contained in:
2026-02-03 01:24:56 +01:00
committed by kitoy
parent e176b7212f
commit c2aaa0ed4a
267 changed files with 54491 additions and 0 deletions

11
app/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import Flask, url_for
from app.utils import init_app
app = Flask(__name__)
app.config.from_pyfile('config.py')
if init_app(app.config) == False:
exit(1)
from app import routes