mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-26 23:39:22 +00:00
16 lines
379 B
Rust
16 lines
379 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; |