From 622fef31c7bdbc0646fbad6ba11ebeb393fb626a Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sun, 15 May 2022 16:31:10 +0200 Subject: fix: Add missing namespace --- src/bin/actix.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/bin') 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 { -- cgit v1.2.3