spool/app.py
2022-07-14 23:32:25 -05:00

13 lines
237 B
Python

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return "Welcome to the initial commit - there's nothing here right now..."
if __name__ == '__main__':
app.run()