mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Nutomic
3053e14be7
* Derive default for api request structs, move type enums * Simplify api by using enum types directly, instead of string * Add default and clone for most api structs
11 lines
200 B
Rust
11 lines
200 B
Rust
pub mod comment;
|
|
pub mod community;
|
|
pub mod person;
|
|
pub mod post;
|
|
#[cfg(feature = "full")]
|
|
pub mod request;
|
|
pub mod sensitive;
|
|
pub mod site;
|
|
#[cfg(feature = "full")]
|
|
pub mod utils;
|
|
pub mod websocket;
|