2021-09-07 16:33:40 +00:00
|
|
|
//go:build !full
|
2020-03-30 02:22:04 +00:00
|
|
|
// +build !full
|
|
|
|
|
|
|
|
package bindata
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
|
|
|
// This file contains placeholders for the asset functions that would normally
|
|
|
|
// allow Fleet to retrieve assets and templates. Providing these placeholders
|
|
|
|
// allows Fleet packages to be included as a library with `go get`.
|
|
|
|
|
|
|
|
func Asset(name string) ([]byte, error) {
|
|
|
|
panic("Assets may not be used when running Fleet as a library")
|
|
|
|
}
|
|
|
|
|
|
|
|
func AssetDir(name string) ([]string, error) {
|
|
|
|
panic("Assets may not be used when running Fleet as a library")
|
|
|
|
}
|
|
|
|
|
|
|
|
func AssetInfo(name string) (os.FileInfo, error) {
|
|
|
|
panic("Assets may not be used when running Fleet as a library")
|
|
|
|
}
|