Files
nomad/command/asset/asset.go
2023-04-10 15:36:59 +00:00

19 lines
332 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
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