package svc import "github.com/zero-ppanel/zero-ppanel/apps/rpc/core/internal/config" type ServiceContext struct { Config config.Config } func NewServiceContext(c config.Config) *ServiceContext { return &ServiceContext{ Config: c, } }