12 lines
236 B
C++
Raw Normal View History

2023-03-01 23:53:58 +01:00
#pragma once
namespace motd
{
using links_map_t = std::unordered_map<std::string, std::string>;
links_map_t get_links();
2023-03-01 23:53:58 +01:00
int get_num_featured_tabs();
nlohmann::json get_motd();
nlohmann::json get_featured_tab(const int index);
}