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() ctx := context.Background()
cfg := config.New() cfg := config.New()
apiClient := apiclient.New(cfg.ServerAddress) apiClient := apiclient.New(cfg.ApiServerAddress)
server := handlers.NewServer(ctx, cfg, apiClient) server := handlers.NewServer(ctx, cfg, apiClient)
fmt.Println("The server is online and waiting for requests.") fmt.Println("The server is online and waiting for requests.")

View File

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