forgot to add oops

This commit is contained in:
Solomon Laing 2021-06-03 22:55:43 +09:30
parent a81d131247
commit 2d65e010aa
2 changed files with 10 additions and 0 deletions

5
dev.py Normal file
View File

@ -0,0 +1,5 @@
from app import api
if __name__ == '__main__':
api.run(debug=True)

5
prod.py Normal file
View File

@ -0,0 +1,5 @@
from app import api
if __name__ == '__main__':
api.run(debug=False)