-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
27 lines (20 loc) · 852 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (c) 2023 Oackland Toro
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(debug=True,port=5001)