mirror of
https://github.com/mvvasilev/paste-eater.git
synced 2025-04-18 21:09:52 +03:00
12 lines
No EOL
178 B
Rust
12 lines
No EOL
178 B
Rust
mod server;
|
|
mod config;
|
|
mod args;
|
|
mod paste;
|
|
mod error;
|
|
|
|
#[rocket::main]
|
|
async fn main() -> Result<(), rocket::Error> {
|
|
server::app::start_paste_eater().await?;
|
|
|
|
Ok(())
|
|
} |