mirror of
https://github.com/moby/buildkit.git
synced 2026-07-06 22:57:41 +00:00
13 lines
202 B
Go
13 lines
202 B
Go
//go:build !nydus
|
|
// +build !nydus
|
|
|
|
package compression
|
|
|
|
func Parse(t string) (Type, error) {
|
|
return parse(t)
|
|
}
|
|
|
|
func FromMediaType(mediaType string) (Type, error) {
|
|
return fromMediaType(mediaType)
|
|
}
|