mirror of
https://github.com/PartTimeHarmacist/spool.git
synced 2025-07-18 07:34:59 +00:00
13 lines
237 B
Python
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()
|