From ff22968521b3bfd467d58d2284db267daf87db77 Mon Sep 17 00:00:00 2001 From: naudachu Date: Thu, 1 Jun 2023 20:02:02 +0500 Subject: [PATCH] move .env file to the cmd/ folder --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index d8ce155..d6a17f9 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -18,7 +18,7 @@ import ( ) func main() { - env("../.env") + env(".env") ctx := context.Background() ctx, cancel := signal.NotifyContext(ctx, os.Interrupt, os.Kill, syscall.SIGTERM)