2024-08-24 07:14:58 +00:00
|
|
|
package svc
|
|
|
|
|
2025-02-12 01:51:46 +00:00
|
|
|
import "code.30cm.net/digimon/app-cloudep-permission-server/internal/config"
|
2024-08-24 07:14:58 +00:00
|
|
|
|
|
|
|
type ServiceContext struct {
|
|
|
|
Config config.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
|
|
|
return &ServiceContext{
|
2025-02-12 01:51:46 +00:00
|
|
|
Config: c,
|
2024-08-24 07:14:58 +00:00
|
|
|
}
|
|
|
|
}
|