mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 08:25:43 +03:00
13 lines
292 B
Go
13 lines
292 B
Go
//+build darwin dragonfly freebsd netbsd openbsd solaris windows
|
|
|
|
package driver
|
|
|
|
import (
|
|
"github.com/hashicorp/nomad/client/config"
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
)
|
|
|
|
func (d *ExecDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
|
|
return false, nil
|
|
}
|