Files
schedtxt_auth/src/main.rs
T
phoenix c053a0a6cf
Rust Build / Check (push) Successful in 33s
Rust Build / Test Suite (push) Successful in 35s
Rust Build / Clippy (push) Successful in 32s
Rust Build / Rustfmt (push) Successful in 37s
Rust Build / build (push) Successful in 24s
Adding hashing module
2026-05-31 16:17:34 -04:00

20 lines
408 B
Rust

pub mod config;
pub mod db;
pub mod hashing;
#[tokio::main]
async fn main() {
// initialize tracing
tracing_subscriber::fmt::init();
/*
let app = init::app().await;
// run our app with hyper, listening globally on port 8001
let url = config::get_full();
let listener = tokio::net::TcpListener::bind(url).await.unwrap();
axum::serve(listener, app).await.unwrap();
*/
}