feat(integrations): removed 'req' from jwt_spot_secret

This commit is contained in:
Alexander 2025-02-28 15:01:03 +01:00
parent fedc48bd0e
commit 2dcbfe2ef9

View file

@ -89,5 +89,5 @@ type HTTP struct {
JsonSizeLimit int64 `env:"JSON_SIZE_LIMIT,default=131072"` // 128KB, 1000 for HTTP service JsonSizeLimit int64 `env:"JSON_SIZE_LIMIT,default=131072"` // 128KB, 1000 for HTTP service
UseAccessControlHeaders bool `env:"USE_CORS,default=false"` UseAccessControlHeaders bool `env:"USE_CORS,default=false"`
JWTSecret string `env:"JWT_SECRET,required"` JWTSecret string `env:"JWT_SECRET,required"`
JWTSpotSecret string `env:"JWT_SPOT_SECRET,required"` JWTSpotSecret string `env:"JWT_SPOT_SECRET"`
} }