features/bootstrapping #1

Merged
jtom38 merged 24 commits from features/bootstrapping into main 2024-06-02 19:55:25 -07:00
Showing only changes of commit 3c35824dc5 - Show all commits

View File

@ -10,7 +10,6 @@ import (
type Configs struct { type Configs struct {
ServerAddress string ServerAddress string
JwtSecret string JwtSecret string
AdminSecret string
} }
func New() Configs { func New() Configs {
@ -23,7 +22,6 @@ func getEnvConfig() Configs {
return Configs{ return Configs{
ServerAddress: os.Getenv("ServerAddress"), ServerAddress: os.Getenv("ServerAddress"),
JwtSecret: os.Getenv("JwtSecret"), JwtSecret: os.Getenv("JwtSecret"),
AdminSecret: os.Getenv("AdminSecret"),
} }
} }