refactor: move common to internal and update public api

This commit is contained in:
2026-03-17 00:30:38 +01:00
parent 6ca04a9392
commit bb31304614
17 changed files with 284 additions and 272 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
#ifndef TGBOT_MAIN_H
#define TGBOT_MAIN_H
#include "common.h"
#include "methods.h"
#include "types.h"
#include <stdint.h>
/**
* @brief Create a new Bot object.
@@ -21,4 +20,4 @@ tgbot_s *tgbot_new(const char *token);
*/
void tgbot_free(tgbot_s *bot);
#endif // TGBOT_H
#endif