This commit is contained in:
2022-10-03 19:21:59 +02:00
commit 930064c9d2
9 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from flask import Flask
app = Flask(__name__)
import toml
app.config.from_file("config.toml", load=toml.load)
app.secret_key = "changeme"
import inventorysystem.views