app-cloudep-wallet-service/internal/svc/service_context.go

14 lines
243 B
Go
Raw Normal View History

2025-04-10 08:20:01 +00:00
package svc
import "code.30cm.net/digimon/app-cloudep-wallet-service/internal/config"
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}