diff options
author | turret <turret@duck.com> | 2025-09-29 00:12:05 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2025-09-29 00:12:05 -0500 |
commit | 535ff19dd942d9d53228200eea9096e7e59f76f8 (patch) | |
tree | b2109d68a00b42edf80f26791866b0a9f4de4461 /include | |
parent | 236887a2e380e57b31b2ad4efb3075a63199df3a (diff) | |
download | discord-bot-skeleton-535ff19dd942d9d53228200eea9096e7e59f76f8.tar.gz discord-bot-skeleton-535ff19dd942d9d53228200eea9096e7e59f76f8.tar.bz2 discord-bot-skeleton-535ff19dd942d9d53228200eea9096e7e59f76f8.zip |
abstract: add interaction responses
Diffstat (limited to 'include')
-rw-r--r-- | include/dbs/abstract.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/dbs/abstract.h b/include/dbs/abstract.h new file mode 100644 index 0000000..62ec410 --- /dev/null +++ b/include/dbs/abstract.h @@ -0,0 +1,8 @@ +#ifndef __DBS_ABSTRACT_H +#define __DBS_ABSTRACT_H + +int interaction_reply(cJSON *i, char *content, int raw); +int interaction_defer_reply(cJSON *i, int hidden); +int interaction_edit_reply(cJSON *i, char *content, int raw); + +#endif |