// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 //go:build !ui // +build !ui package agent import ( assetfs "github.com/elazarl/go-bindata-assetfs" ) func init() { uiEnabled = false stubHTML = `

Nomad UI is not available in this binary. To get Nomad UI do one of the following:

` } // assetFS is a stub for building Nomad without a UI. func assetFS() *assetfs.AssetFS { return nil }