Skip to content
Snippets Groups Projects
Commit 97eb8488 authored by Dominic Daniel Krämer's avatar Dominic Daniel Krämer
Browse files

add basic flask page

parent c9af9bf3
No related branches found
No related tags found
No related merge requests found
app.py 0 → 100644
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return "Space Station Chatbot"
if __name__ == '__main__':
app.run(debug=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment