4d90afb425
mostly to handle build directives in 1.17.
11 lines
253 B
Go
11 lines
253 B
Go
//go:build !ent
|
|
// +build !ent
|
|
|
|
package nomad
|
|
|
|
// allocQuota returns the quota object associated with the allocation. In
|
|
// anything but Premium this will always be empty
|
|
func (n *nomadFSM) allocQuota(allocID string) (string, error) {
|
|
return "", nil
|
|
}
|