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

@ -8,8 +8,9 @@ import (
) )
type Configs struct { type Configs struct {
ServerAddress string ServerAddress string
JwtSecret string JwtSecret string
ApiServerAddress string
} }
func New() Configs { func New() Configs {
@ -20,8 +21,9 @@ func New() Configs {
func getEnvConfig() Configs { 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"),
} }
} }