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