package svc import "bsm/full/module/ec/delivery/internal/config" type ServiceContext struct { Config config.Config } func NewServiceContext(c config.Config) *ServiceContext { return &ServiceContext{ Config: c, } }