mirror of
https://github.com/postrequest/link
synced 2026-06-08 16:46:19 +00:00
12 lines
181 B
Rust
12 lines
181 B
Rust
// internal packages
|
|
pub mod routes;
|
|
pub mod server;
|
|
pub mod util;
|
|
|
|
#[macro_use] extern crate prettytable;
|
|
|
|
#[actix_web::main]
|
|
async fn main() {
|
|
util::cli::main_loop().await;
|
|
}
|