mirror of
https://github.com/WCBROW01/zblock.git
synced 2025-12-11 20:18:07 -05:00
14 lines
229 B
C
14 lines
229 B
C
#ifndef ZBLOCK_CONFIG_H
|
|
#define ZBLOCK_CONFIG_H
|
|
|
|
#include <concord/discord.h>
|
|
|
|
// the current zblock config
|
|
extern struct zblock_config {
|
|
char *conninfo;
|
|
} zblock_config;
|
|
|
|
int zblock_config_load(struct discord *client);
|
|
|
|
#endif
|