diff --git a/app.py b/app.py index 93418cd..b3a827f 100644 --- a/app.py +++ b/app.py @@ -37,6 +37,11 @@ def homepage(): return render_template("home.html", services=services) +@app.route("/chart") +def chart(): + return render_template("chart.html") + + @app.route("/api/status") def status(): results: list[dict[str, Any]] = [] diff --git a/mem/templates/chart.html b/mem/templates/chart.html new file mode 100644 index 0000000..44aacfa --- /dev/null +++ b/mem/templates/chart.html @@ -0,0 +1,45 @@ + + + + + + Chart + + + + +
+ +
+ + + + + + + + \ No newline at end of file