Files
juwan-backend/app/user_verifications/rpc/internal/svc/serviceContext.go
T
2026-02-27 05:42:13 +08:00

14 lines
235 B
Go

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