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)