mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-31 09:49:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			181 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			181 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package task
 | |
| 
 | |
| import "v2ray.com/core/common"
 | |
| 
 | |
| // Close returns a func() that closes v.
 | |
| func Close(v interface{}) func() error {
 | |
| 	return func() error {
 | |
| 		return common.Close(v)
 | |
| 	}
 | |
| }
 | 
