Server Admin

Viewing: go18.go

// +build go1.8

package middleware

import "net/url"

func pathUnescape(path string) (string, error) {
	return url.PathUnescape(path)
}
Back to File Manager