18 lines
259 B
Python
18 lines
259 B
Python
import datetime
|
|
|
|
import flask
|
|
from flask import render_template, request
|
|
|
|
from modules.clocks import crt
|
|
|
|
app = flask.Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return render_template("index.html")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=True)
|