mod routes; mod structs; mod database; use actix_web::{web, App, HttpServer}; use dotenv::dotenv; use std::sync::Arc; #[derive(Clone)] struct AppState { database: Arc } #[actix_web::main] async fn main() -> std::io::Result<()> { // Errors can get very tough, // the rust log saved my ass std::env::set_var("RUST_LOG", "debug"); env_logger::init(); dotenv().ok(); let db_raw = database::DatabaseWrapper::new().await.expect("Something went wrong -- DatabaseWrapper::new()"); let db = Arc::new(db_raw); let app_state = AppState{database: db}; HttpServer::new(move || { App::new() .app_data(web::Data::new(app_state.clone())) .route("/", web::get().to(root)) .service(routes::song::song) .service(routes::album::album) .service(routes::artist::artist) .service(routes::search_results::search_results) }) .bind(("127.0.0.1", 8000))? .run() .await } async fn root() -> String { String::from("Server is up and running") }