Skip to main content

nil_payload/response/
mod.rs

1// Copyright (C) Call of Nil contributors
2// SPDX-License-Identifier: AGPL-3.0-only
3
4pub mod auth;
5pub mod battle;
6pub mod chat;
7pub mod cheat;
8pub mod city;
9pub mod continent;
10pub mod infrastructure;
11pub mod military;
12pub mod npc;
13pub mod player;
14pub mod ranking;
15pub mod report;
16pub mod round;
17pub mod server;
18pub mod user;
19pub mod world;
20
21pub mod prelude {
22  pub use super::auth::*;
23  pub use super::battle::*;
24  pub use super::chat::*;
25  pub use super::cheat::prelude::*;
26  pub use super::city::*;
27  pub use super::continent::*;
28  pub use super::infrastructure::prelude::*;
29  pub use super::military::*;
30  pub use super::npc::prelude::*;
31  pub use super::player::*;
32  pub use super::ranking::*;
33  pub use super::report::*;
34  pub use super::round::*;
35  pub use super::server::*;
36  pub use super::user::*;
37  pub use super::world::*;
38}