blob: c4834e7dbd248d7952203f7f7a9f45ec8eda5f59 [file] [log] [blame]
// Code generated by go generate. DO NOT EDIT.
//go:generate rm pkg.go
//go:generate go run ../../gen/gen.go
package file
import (
"cuelang.org/go/internal/core/adt"
"cuelang.org/go/pkg/internal"
)
func init() {
internal.Register("tool/file", pkg)
}
var _ = adt.TopKind // in case the adt package isn't used
var pkg = &internal.Package{
Native: []*internal.Builtin{},
CUE: `{
Read: {
$id: "tool/file.Read"
filename: !=""
contents: *bytes | string
}
Append: {
$id: "tool/file.Append"
filename: !=""
permissions: int | *438
contents: bytes | string
}
Create: {
$id: "tool/file.Create"
filename: !=""
permissions: int | *438
contents: bytes | string
}
Glob: {
$id: "tool/file.Glob"
glob: !=""
files: [...string]
}
}`,
}