Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 37caf3c

Browse files
committed
Add app initialization code
1 parent 0245cc1 commit 37caf3c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from app import create_app
2+
3+
# Create the app instance
4+
app = create_app()
5+
6+
if __name__ == "__main__":
7+
app.run()

0 commit comments

Comments
 (0)