From 3c35824dc50a41e83c8111b7c76a5ef5227535f2 Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Sun, 12 May 2024 09:23:19 -0700 Subject: [PATCH] Removed the adminSecret because it does not exist here, API only. --- internal/config/config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index d529496..364bb2c 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -10,7 +10,6 @@ import ( type Configs struct { ServerAddress string JwtSecret string - AdminSecret string } func New() Configs { @@ -23,7 +22,6 @@ func getEnvConfig() Configs { return Configs{ ServerAddress: os.Getenv("ServerAddress"), JwtSecret: os.Getenv("JwtSecret"), - AdminSecret: os.Getenv("AdminSecret"), } }