From d1793df1eda463b10107d41785ad1d7f055ed476 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 18 May 2024 14:48:12 +0500 Subject: upd: moved the bot part to a relative subfolder --- bot/src/constants.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bot/src/constants.hpp (limited to 'bot/src/constants.hpp') diff --git a/bot/src/constants.hpp b/bot/src/constants.hpp new file mode 100644 index 0000000..3c3462b --- /dev/null +++ b/bot/src/constants.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include +#include + +#define DEFAULT_LOCALE_ID "english" + +#ifdef DEBUG_MODE +const std::string DEFAULT_PREFIX = "~"; +#else +const std::string DEFAULT_PREFIX = "!"; +#endif +const auto START_TIME = std::chrono::steady_clock::now(); -- cgit v1.2.3