mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Add service.ContextWithDefaultRegistry
This commit is contained in:
parent
a39dcdba79
commit
81e2f7d664
1 changed files with 7 additions and 0 deletions
|
@ -10,6 +10,13 @@ func ContextWithRegistry(ctx context.Context, registry Registry) context.Context
|
|||
return context.WithValue(ctx, common.DefaultValue[*Registry](), registry)
|
||||
}
|
||||
|
||||
func ContextWithDefaultRegistry(ctx context.Context) context.Context {
|
||||
if RegistryFromContext(ctx) != nil {
|
||||
return ctx
|
||||
}
|
||||
return context.WithValue(ctx, common.DefaultValue[*Registry](), NewRegistry())
|
||||
}
|
||||
|
||||
func RegistryFromContext(ctx context.Context) Registry {
|
||||
registry := ctx.Value(common.DefaultValue[*Registry]())
|
||||
if registry == nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue