Spaces:
Runtime error
Runtime error
File size: 162 Bytes
5883a42 |
1 2 3 4 5 6 7 8 9 10 11 |
# src/run.py
# run.py - ์ ํ๋ฆฌ์ผ์ด์
์คํ ํ์ผ
from src import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)
|