You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
404 B
21 lines
404 B
package schema
|
|
|
|
//go:generate go-bindata -ignore=\.go -pkg=schema -o=bindata.go ./...
|
|
|
|
import "bytes"
|
|
|
|
// String gets the schema
|
|
func String() string {
|
|
buf := bytes.Buffer{}
|
|
for _, name := range AssetNames() {
|
|
b := MustAsset(name)
|
|
buf.Write(b)
|
|
|
|
// Add a newline if the file does not end in a newline.
|
|
if len(b) > 0 && b[len(b)-1] != '\n' {
|
|
buf.WriteByte('\n')
|
|
}
|
|
}
|
|
|
|
return buf.String()
|
|
}
|