Files
nomad/api/contexts/contexts.go
Chelsea Holland Komlo 3319fb5822 fixups from code review
2017-08-14 17:56:03 +00:00

13 lines
247 B
Go

package contexts
// Context defines the scope in which a search for Nomad object operates
type Context string
const (
Allocs Context = "allocs"
Evals Context = "evals"
Jobs Context = "jobs"
Nodes Context = "nodes"
All Context = ""
)