migrated the webserver to go to keep my sanity

closes #12 #2
This commit is contained in:
odweta
2026-08-11 19:27:09 +02:00
parent e56ddc461b
commit 7ae0781430
608 changed files with 456 additions and 64005 deletions
+23
View File
@@ -0,0 +1,23 @@
// class Ticket {
// constructor(
// id,
// title,
// description,
// status,
// created_at,
// updated_at
// ) {
// this.id = id;
// this.title = title;
// this.description = description;
// this.status = status;
// this.created_at = created_at;
// this.updated_at = updated_at;
// }
// }
// var tickets = [
// new Ticket(0, "ticket 1", "some desc", Status.CLOSED, 1786438392, 1786438393),
// new Ticket(1, "ticket 2", "some other desc", Status.OPEN, 1786438394, 1786438395),
// new Ticket(2, "ticket 3", "some third desc", Status.OPEN, 1786438396, 1786438397)
// ];