0b9ba1ae92
* Convert assets from bindatafs to go embeds * Add command/asset to "uninteresting" list for missing test check * Remove generate-examples target * Update paths in tests
16 lines
262 B
Go
16 lines
262 B
Go
package asset
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed example.nomad.hcl
|
|
var JobExample []byte
|
|
|
|
//go:embed example-short.nomad.hcl
|
|
var JobExampleShort []byte
|
|
|
|
//go:embed connect.nomad.hcl
|
|
var JobConnect []byte
|
|
|
|
//go:embed connect-short.nomad.hcl
|
|
var JobConnectShort []byte
|