dotenv was abadonend lol

This commit is contained in:
2023-12-19 15:22:55 +02:00
parent 061ff570a6
commit ce117cae12
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ edition = "2021"
[dependencies] [dependencies]
actix-web = "4" actix-web = "4"
chrono = { version = "0.4.31", features = ["serde"] } chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0" dotenvy = "0.15.7"
env_logger = "0.10.1" env_logger = "0.10.1"
serde = "1.0.193" serde = "1.0.193"
serde_json = "1.0.108" serde_json = "1.0.108"

View File

@@ -1,5 +1,5 @@
use actix_web::{post, web, App, HttpResponse, HttpServer, Responder}; use actix_web::{post, web, App, HttpResponse, HttpServer, Responder};
use dotenv::dotenv; use dotenvy::dotenv;
use witl_api::*; use witl_api::*;
#[post("/echo")] #[post("/echo")]
async fn echo(req_body: String) -> impl Responder { async fn echo(req_body: String) -> impl Responder {