mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Add must register func for service
This commit is contained in:
parent
30bf19f283
commit
0eec7bbe19
1 changed files with 16 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue