9 lines
201 B
Rust
9 lines
201 B
Rust
// all the useful re-exports to get an app online without worrying too much about modules
|
|
pub use crate::{
|
|
html::*,
|
|
compose::Compose,
|
|
output,
|
|
router::{ Router, self },
|
|
server::*
|
|
};
|