mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 08:34:30 +01:00 
			
		
		
		
	* Use vendored go-swagger * vendor go-swagger * revert un wanteed change * remove un-needed GO111MODULE * Update Makefile Co-Authored-By: techknowlogick <matti@mdranta.net>
		
			
				
	
	
		
			10 lines
		
	
	
		
			139 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			139 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// +build !go1.8
 | 
						|
 | 
						|
package middleware
 | 
						|
 | 
						|
import "net/url"
 | 
						|
 | 
						|
func pathUnescape(path string) (string, error) {
 | 
						|
	return url.QueryUnescape(path)
 | 
						|
}
 |