bbz/app.py

14 lines
194 B
Python
Raw Permalink Normal View History

2025-02-15 18:56:05 +01:00
import sqlite3
2024-12-21 20:28:19 +01:00
from flask import Flask, render_template
app = Flask(__name__)
2025-02-15 18:56:05 +01:00
2024-12-21 20:28:19 +01:00
@app.route("/")
def index():
return render_template('maint.html')
2025-02-15 18:56:05 +01:00
2024-12-22 07:46:04 +01:00
if __name__ == '__main__':
app.run()