migrate to c++, all layers done except for data access

This commit is contained in:
odweta
2026-08-13 21:32:30 +02:00
parent 4389466d40
commit 3b8c6f00f5
25 changed files with 228 additions and 242 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef TICKET_H
#define TICKET_H
#include <string>
#include <ctime>
using namespace std;
typedef struct {
unsigned long id;
string title;
string description;
string status;
string created_at;
string updated_at;
} ticket_t;
#endif // TICKET_H