diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/actix.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/actix.rs b/src/bin/actix.rs index c2f81fe..4137713 100644 --- a/src/bin/actix.rs +++ b/src/bin/actix.rs @@ -1,5 +1,6 @@ use actix_web::{get, web, App, HttpResponse, HttpServer, Responder, http::header::ContentType}; use macroblog::blog::{render_index_page, render_post_page}; +use std::{env}; #[get("/")] async fn index() -> impl Responder { |