package svc import "juwan-backend/app/email/mq/internal/config" type ServiceContext struct { c config.Config } func NewServiceContext(c config.Config) *ServiceContext { return &ServiceContext{ c: c, } }