Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/main.py

18 lines
277 B

7 years ago
from flask import Flask
7 years ago
from flask import render_template
7 years ago
app = Flask(__name__)
7 years ago
app.debug = True
7 years ago
7 years ago
@app.route("/h")
7 years ago
def hello():
7 years ago
return "Hello World!"
7 years ago
7 years ago
@app.route("/")
7 years ago
def index():
return render_template('default/index.html')
if __name__ == "__main__":
app.run()