diff --git a/service/context.go b/service/context.go index 327d8ba..6817582 100644 --- a/service/context.go +++ b/service/context.go @@ -68,3 +68,19 @@ func ContextWithPtr[T any](ctx context.Context, servicePtr *T) context.Context { registry.Register(common.DefaultValue[*T](), servicePtr) return ctx } + +func MustRegister[T any](ctx context.Context, service T) { + registry := RegistryFromContext(ctx) + if registry == nil { + panic("missing service registry in context") + } + registry.Register(common.DefaultValue[*T](), service) +} + +func MustRegisterPtr[T any](ctx context.Context, servicePtr *T) { + registry := RegistryFromContext(ctx) + if registry == nil { + panic("missing service registry in context") + } + registry.Register(common.DefaultValue[*T](), servicePtr) +}