* cleanup client/selector/lookup * add mdns router, remove registry from client * fix roundtripper * remove comment * fix compile issue * fix mucp test * fix api router
		
			
				
	
	
		
			18 lines
		
	
	
		
			471 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			471 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package client
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| )
 | |
| 
 | |
| // CallFunc represents the individual call func
 | |
| type CallFunc func(ctx context.Context, addr string, req Request, rsp interface{}, opts CallOptions) error
 | |
| 
 | |
| // CallWrapper is a low level wrapper for the CallFunc
 | |
| type CallWrapper func(CallFunc) CallFunc
 | |
| 
 | |
| // Wrapper wraps a client and returns a client
 | |
| type Wrapper func(Client) Client
 | |
| 
 | |
| // StreamWrapper wraps a Stream and returns the equivalent
 | |
| type StreamWrapper func(Stream) Stream
 |