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