Started creating structure of bot interface

This commit is contained in:
Kirill 2025-11-18 17:30:43 +03:00
parent 879a7981cd
commit 602e9b62d8
8 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#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";
}
}