rsiot/components/cmp_http_server/routes/
root.rs

1
2
3
4
5
/// Маршрут для получения сообщений
pub async fn root() -> String {
    let text = include_str!("../../../../doc/api_description.md");
    text.to_string()
}