Authenticate on service start
This commit is contained in:
		
							
								
								
									
										21
									
								
								registry/service/options.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								registry/service/options.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| package service | ||||
|  | ||||
| import ( | ||||
| 	"context" | ||||
|  | ||||
| 	"github.com/micro/go-micro/v2/client" | ||||
| 	"github.com/micro/go-micro/v2/registry" | ||||
| ) | ||||
|  | ||||
| type clientKey struct{} | ||||
|  | ||||
| // WithClient sets the RPC client | ||||
| func WithClient(c client.Client) registry.Option { | ||||
| 	return func(o *registry.Options) { | ||||
| 		if o.Context == nil { | ||||
| 			o.Context = context.Background() | ||||
| 		} | ||||
|  | ||||
| 		o.Context = context.WithValue(o.Context, clientKey{}, c) | ||||
| 	} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user