features/token-things #2

Merged
jtom38 merged 7 commits from features/token-things into main 2024-07-07 08:03:00 -07:00
2 changed files with 7 additions and 5 deletions
Showing only changes of commit aca1314222 - Show all commits

View File

@ -13,7 +13,7 @@ func main() {
ctx := context.Background()
cfg := config.New()
apiClient := apiclient.New(cfg.ServerAddress)
apiClient := apiclient.New(cfg.ApiServerAddress)
server := handlers.NewServer(ctx, cfg, apiClient)
fmt.Println("The server is online and waiting for requests.")

View File

@ -8,8 +8,9 @@ import (
)
type Configs struct {
ServerAddress string
JwtSecret string
ServerAddress string
JwtSecret string
ApiServerAddress string
}
func New() Configs {
@ -20,8 +21,9 @@ func New() Configs {
func getEnvConfig() Configs {
return Configs{
ServerAddress: os.Getenv("ServerAddress"),
JwtSecret: os.Getenv("JwtSecret"),
ServerAddress: os.Getenv("ServerAddress"),
JwtSecret: os.Getenv("JwtSecret"),
ApiServerAddress: os.Getenv("ApiServerAddress"),
}
}