features/bootstrapping #1

Merged
jtom38 merged 24 commits from features/bootstrapping into main 2024-06-02 19:55:25 -07:00
1 changed files with 0 additions and 2 deletions
Showing only changes of commit 3c35824dc5 - Show all commits

View File

@ -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"),
}
}