Initial commit

This commit is contained in:
王思川 2021-11-29 11:05:56 +08:00
commit fa77d9f059
7 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/.idea
/venv
*.pyc

12
app.py Normal file
View File

@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run()

0
apps/__init__.py Normal file
View File

0
db/__init__.py Normal file
View File

0
lib/__init__.py Normal file
View File

0
routes.py Normal file
View File

0
setting.py Normal file
View File