1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-30 22:13:01 +00:00

19 lines
459 B
Rust
Raw Normal View History

2020-05-24 13:13:00 +02:00
//! # API structures
//!
//! ## Presentation
//! This module contains all the serializable structures that can be sent through the API to the
//! Clients
//!
//! ## Author
//! Pierre Hubert
2020-05-24 13:09:50 +02:00
pub mod http_error;
2020-05-24 17:57:47 +02:00
pub mod login_success;
2020-05-25 13:25:51 +02:00
pub mod current_user_id;
2020-05-26 19:45:38 +02:00
pub mod user_info;
pub mod custom_emoji;
2020-06-03 13:28:28 +02:00
pub mod res_find_user_by_virtual_directory;
pub mod res_find_virtual_directory;
pub mod res_create_conversation;
pub mod conversation_api;
mod legacy_api_bool;