Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
venombolteop authored Oct 7, 2024
1 parent 3be53cc commit 4441212
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():
return "hello venom"


if __name__ == "__main__":
app.run(host="0.0.0.0", port=80)

0 comments on commit 4441212

Please sign in to comment.