1// +build !ent
2
3package nomad
4
5import "github.com/hashicorp/nomad/nomad/structs"
6
7// enforceSubmitJob is used to check any Sentinel policies for the submit-job scope
8func (j *Job) enforceSubmitJob(override bool, job *structs.Job) (error, error) {
9	return nil, nil
10}
11