main
Anna Ļaško 2024-05-02 07:17:10 +00:00
commit 81762f3ee2
1 changed files with 7 additions and 0 deletions

7
main 100644
View File

@ -0,0 +1,7 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "This is an example app"