mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-23 13:59:21 +00:00
26 lines
707 B
Rust
26 lines
707 B
Rust
//! # API structures
|
|
//!
|
|
//! ## Presentation
|
|
//! This module contains all the serializable structures that can be sent through the API to the
|
|
//! Clients
|
|
//!
|
|
//! ## Author
|
|
//! Pierre Hubert
|
|
|
|
pub mod http_error;
|
|
pub mod login_success;
|
|
pub mod current_user_id;
|
|
pub mod user_info;
|
|
pub mod custom_emoji;
|
|
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;
|
|
pub mod res_find_private_conversations;
|
|
pub mod conversation_message_api;
|
|
pub mod conversations_refresh_api;
|
|
pub mod res_count_unread_conversations;
|
|
pub mod list_unread_conversations_api;
|
|
pub mod global_search_result_api;
|
|
pub mod res_create_group; |