package svc import "code.30cm.net/digimon/app-cloudep-comment-server/internal/config" type ServiceContext struct { Config config.Config } func NewServiceContext(c config.Config) *ServiceContext { return &ServiceContext{ Config: c, } }