mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 01:15:43 +03:00
19 lines
368 B
Go
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")
|
|
}
|