mirror of
https://github.com/wangdage12/Snap.Server.git
synced 2026-02-18 02:42:12 +08:00
7 lines
99 B
Python
7 lines
99 B
Python
|
|
from app import create_app
|
||
|
|
|
||
|
|
app = create_app()
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
app.run(debug=True)
|