app-cloudep-notification-se.../internal/svc/service_context.go

14 lines
227 B
Go
Raw Normal View History

2024-08-20 06:35:14 +00:00
package svc
import "app-cloudep-notification-service/internal/config"
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}