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

14 lines
219 B
Go

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