Using rust #2

Merged
phoenix merged 29 commits from v0.2.0 into main 2026-05-31 18:18:42 -04:00
Showing only changes of commit 1a6be5f541 - Show all commits
+13 -2
View File
@@ -1,5 +1,16 @@
pub fn main() {
println!("textsender_auth");
#[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();
*/
}