Files
juwan-backend/app/objectstory/rpc/internal/svc/serviceContext.go
T
2026-02-27 19:17:01 +08:00

14 lines
228 B
Go

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