mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-27 21:12:13 +00:00
8 lines
110 B
Python
8 lines
110 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def hello_world():
|
|
return 'Hello, World!'
|