nyanimedb/modules/bot/front/include/constants.hpp
2025-11-18 17:44:03 +03:00

17 lines
521 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <string>
namespace BotConstants {
namespace Button {
const std::string FIND_ANIME = "Найти аниме";
const std::string MY_TITLES = "Мои тайтлы";
}
namespace Callback {
const std::string FIND_ANIME = "action:find_anime";
const std::string MY_TITLES = "navigation:my_titles";
}
namespace Text {
const std::string MAIN_MENU = "Вас приветствует nyanimedb бот:)\nЧего будем делать?";
}
}