woj-server/internal/global/global.go

16 lines
222 B
Go
Raw Normal View History

2022-09-07 23:34:37 +08:00
package global
import (
2023-07-14 21:47:11 +08:00
"git.0x7f.app/WOJ/woj-server/internal/pkg/metrics"
2022-09-07 23:34:37 +08:00
"go.uber.org/zap"
)
type Global struct {
Log *zap.Logger
Conf *Config
Stat *metrics.Metrics
Db Repo
Redis Repo
Jwt JwtService
2022-09-07 23:34:37 +08:00
}