mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
a6acb1cd1a
* Allow users to be readded if they were ever removed * Address review comment * lint
23 lines
633 B
Go
23 lines
633 B
Go
//go:build !full
|
|
// +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")
|
|
}
|