initial commit

This commit is contained in:
2019-01-01 11:47:57 +05:00
commit aad07968d1
3 changed files with 171 additions and 0 deletions

12
app.py Executable file
View File

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