mirror of https://github.com/docker/cli.git
Merge pull request #1169 from silvin-lubecki/schema-vendoring
Add a doc.go file so the compose/schema/data directory can be vendore…
This commit is contained in:
commit
981c099b96
|
@ -1,4 +1,4 @@
|
||||||
// Code generated by "esc -o bindata.go -pkg schema -private -modtime=1518458244 data"; DO NOT EDIT.
|
// Code generated by "esc -o bindata.go -pkg schema -ignore .*\.go -private -modtime=1518458244 data"; DO NOT EDIT.
|
||||||
|
|
||||||
package schema
|
package schema
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
/*
|
||||||
|
Package data contains all the Compose file JSON schemas, starting from v3.0.
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// +domain=docker.com
|
||||||
|
|
||||||
|
package data
|
|
@ -1,6 +1,6 @@
|
||||||
package schema
|
package schema
|
||||||
|
|
||||||
//go:generate esc -o bindata.go -pkg schema -private -modtime=1518458244 data
|
//go:generate esc -o bindata.go -pkg schema -ignore .*\.go -private -modtime=1518458244 data
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
Loading…
Reference in New Issue