Files
zblock/config.h
Will Brown cd90d62b2c Extract feed_info struct and save routine to its own file
Also start creating basic framework for config
2024-11-21 16:18:26 -05:00

14 lines
234 B
C

#ifndef ZBLOCK_CONFIG_H
#define ZBLOCK_CONFIG_H
#include <concord/discord.h>
// the current zblock config
extern struct zblock_config {
char *database_path;
} zblock_config;
int zblock_config_load(struct discord *client);
#endif