nyanimedb/modules/bot/front/include/constants.hpp

14 lines
367 B
C++

#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";
}
}