mirror of
				https://github.com/therootcompany/pathman.git
				synced 2024-11-16 17:09:01 +00:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			241 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			241 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | // +build !windows | ||
|  | 
 | ||
|  | package winpath | ||
|  | 
 | ||
|  | func paths() ([]string, error) { | ||
|  | 	return nil, ErrWrongPlatform | ||
|  | } | ||
|  | 
 | ||
|  | func add(string) (bool, error) { | ||
|  | 	return false, ErrWrongPlatform | ||
|  | } | ||
|  | 
 | ||
|  | func remove(string) (bool, error) { | ||
|  | 	return false, ErrWrongPlatform | ||
|  | } |