hibot/source/config.inc

13 lines
400 B
PHP
Raw Normal View History

2023-12-15 17:45:27 -05:00
#ifndef CONFIG_INC
2023-12-17 14:44:35 -05:00
const char * const username = PROGRAM_NAME;
const char * const password = "";
const int message_timeout = 3;
const char * const message_queue_full_message = "Air space too crowded in this area.";
#define message_queue_size 3
2023-12-16 20:51:49 -05:00
#define DEFAULT_LANGUAGE C
#define LOG_FILE stdout
2023-12-15 17:45:27 -05:00
#define CONFIG_INC
#endif