#ifndef CHATSERVER_SETTINGS_H #define CHATSERVER_SETTINGS_H // comment this line to build without ANSI color #define BBS_COLOR // how many users can be in a text channel at once #define USERS_PER_CHANNEL 10 // max length of a text channel name #define CHANNEL_NAME_LEN 64 // filenames #define DB_PATH "lemonbbs.db3" #define CONFIG_PATH "config.toml" #endif