mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
11 lines
218 B
Go
11 lines
218 B
Go
// +build !linux
|
|
|
|
package allocdir
|
|
|
|
import "github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
func (r *AllocRunner) Build(tasks []*structs.Task) error {
|
|
// TODO: Need to figure out how to do mounts on windows.
|
|
return nil
|
|
}
|