Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
l0rtk committed Sep 28, 2021
0 parents commit 08c3633
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from flask import Flask

app = Flask(__name__)

@app.route("/")
def hello_world():
return "Hello World"



if "__main__" == __name__:
app.run()

0 comments on commit 08c3633

Please sign in to comment.