initial server stuff

This commit is contained in:
iamBadgers
2026-03-15 15:23:48 -07:00
commit 6bb60c49f4
7 changed files with 94 additions and 0 deletions

Binary file not shown.

20
src/main.py Normal file
View File

@@ -0,0 +1,20 @@
from flask import Flask, jsonify, request
app = Flask(__name__)
@app.route("/api/active_tables")
def hello():
return jsonify([{
"a": 1,
"b": "b",
"potato": "potato"
}])
@app.route("/api/tables")
def potato():
return jsonify([{
"id": 1,
"table_name": "Nuntis",
"table_link": "vtt.cyberpunkrush.com/nuntis",
"active": False
}])