This commit is contained in:
2025-02-07 23:04:51 +01:00
parent 85718f3aea
commit 19eff26934
2 changed files with 23 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
fn main() {
println!("Hello, world!");
use dotenvy::dotenv;
mod base;
mod config;
mod models;
mod routes;
mod utils;
#[tokio::main]
async fn main() -> Result<(), Box<dyn , std::error::Error>> {
//
}