github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/atc/db/migration/bindata.go (about) 1 package migration 2 3 import ( 4 "errors" 5 "os" 6 ) 7 8 func Asset(string) ([]byte, error) { 9 return nil, errors.New("no assets") 10 } 11 12 func MustAsset(string) []byte { 13 panic("no assets") 14 } 15 16 func AssetInfo(string) (os.FileInfo, error) { 17 return nil, errors.New("no assets") 18 } 19 20 func AssetNames() []string { 21 return nil 22 } 23 24 func AssetDir(string) ([]string, error) { 25 return nil, errors.New("no assets") 26 } 27 28 func RestoreAsset(string, string) error { 29 return errors.New("no assets") 30 } 31 32 func RestoreAssets(string, string) error { 33 return errors.New("no assets") 34 }