FFatih commited on
Commit
dedc2ee
1 Parent(s): 32c5ab8

Create main.py

Browse files
Files changed (1) hide show
  1. main.py +7 -0
main.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from flask import Flask
2
+
3
+ app = FLASK(__name__)
4
+
5
+ @app.route("/")
6
+ def hello():
7
+ return {"message":"hello"}