init
This commit is contained in:
10
inventorysystem/__init__.py
Normal file
10
inventorysystem/__init__.py
Normal 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
|
||||
Reference in New Issue
Block a user