Files
graphql-monitoring-proxy/struct_config.go
T
2023-10-07 11:14:20 +01:00

31 lines
638 B
Go

package main
import (
"github.com/akyoto/cache"
libpack_logging "github.com/telegram-bot-app/libpack/logging"
libpack_monitoring "github.com/telegram-bot-app/libpack/monitoring"
)
// config is a struct that holds the configuration of the application.
type config struct {
Logger *libpack_logging.LogConfig
Monitoring *libpack_monitoring.MetricsSetup
// Server holds the configuration of the server _ONLY_.
Server struct {
PortGraphQL int
PortMonitoring int
HostGraphQL string
}
Client struct {
JWTUserClaimPath string
}
Cache struct {
CacheEnable bool
CacheTTL int
CacheClient *cache.Cache
}
}