Files
nomad/client/allocdir/builder_windows.go
2015-09-25 16:46:41 -07:00

19 lines
368 B
Go

// +build !linux
package allocdir
import (
"errors"
"github.com/hashicorp/nomad/nomad/structs"
)
func (d *AllocDir) Build(tasks []*structs.Task) error {
// TODO: Need to figure out how to do mounts on windows.
return errors.New("Not implemented")
}
func (d *AllocDir) Embed(task string, dirs map[string]string) error {
return errors.New("Not implemented")
}