diff options
author | turret <turret@duck.com> | 2024-03-30 16:04:45 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2024-03-30 16:04:45 -0500 |
commit | 80a67b7d20393a29aa5d2cb92197f3381be7fd96 (patch) | |
tree | f0c313da5ef509e79e5067972edd91976513ce0e /include/subsys.h | |
parent | f01745a2ee84f11b8cc54e37c5f7f596184ab785 (diff) | |
download | discord-bot-skeleton-80a67b7d20393a29aa5d2cb92197f3381be7fd96.tar.gz discord-bot-skeleton-80a67b7d20393a29aa5d2cb92197f3381be7fd96.tar.bz2 discord-bot-skeleton-80a67b7d20393a29aa5d2cb92197f3381be7fd96.zip |
*: directory changes
since this project is a skeleton and not meant to clutter up the code
that will actually consume the bot, i've opted to consolidate the
majority of files under a single directory and minimise extra files
*: move code to util/
*: move include files to include/dbs/
net: consolidate net functions into single file
config: remove config
Diffstat (limited to 'include/subsys.h')
-rw-r--r-- | include/subsys.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/subsys.h b/include/subsys.h deleted file mode 100644 index 1515293..0000000 --- a/include/subsys.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef __SUBSYS_H -#define __SUBSYS_H - -int __impl_start_subsystem(char *name, int (*fn)(void)); -#define start_subsystem(fn) __impl_start_subsystem(#fn, fn) - -#endif |