app-cloudep-permission-server/internal/svc/service_context.go

14 lines
224 B
Go
Raw Normal View History

package svc
import "app-cloudep-permission-server/internal/config"
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}