mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-26 10:34:24 +01:00
Vendor in all firecracker dependencies. This allows virtcontainers to pull call the firecracker REST API. Signed-off-by: Manohar Castelino <manohar.r.castelino@intel.com>
10 lines
137 B
Go
10 lines
137 B
Go
// +build go1.8
|
|
|
|
package middleware
|
|
|
|
import "net/url"
|
|
|
|
func pathUnescape(path string) (string, error) {
|
|
return url.PathUnescape(path)
|
|
}
|