Ignore dotenv failure

This commit is contained in:
Matthew Esposito 2023-06-06 15:07:11 -04:00
parent 659a82bf63
commit dc7601375e
No known key found for this signature in database

View File

@ -110,7 +110,7 @@ async fn style() -> Result<Response<Body>, String> {
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {
// Load environment variables // Load environment variables
dotenvy::dotenv().unwrap(); _ = dotenvy::dotenv();
// Initialize logger // Initialize logger
pretty_env_logger::init(); pretty_env_logger::init();