15 lines
204 B
Rust
15 lines
204 B
Rust
|
mod about;
|
||
|
pub use about::AboutPage;
|
||
|
|
||
|
mod config;
|
||
|
pub use config::ConfigPage;
|
||
|
|
||
|
mod debug;
|
||
|
pub use debug::DebugPage;
|
||
|
|
||
|
mod register;
|
||
|
pub use register::RegisterPage;
|
||
|
|
||
|
mod search;
|
||
|
pub use search::SearchPage;
|