#ifndef DAO_H #define DAO_H #include #include #include "ticket.h" using namespace std; class Dao { public: string api_key; string db_url; void populate_env(); ticket_t fetch_ticket_create(string title, string description); vector fetch_ticket_get_all(); vector fetch_ticket_get_by_status(string status); ticket_t fetch_ticket_get_by_id(unsigned long id); }; #endif // DAO_H