open-nomad/client/driver/executor/exec_universal.go
2015-11-04 16:53:27 -08:00

13 lines
207 B
Go

// +build !linux
package executor
func NewExecutor() Executor {
return &UniversalExecutor{BasicExecutor{}}
}
// UniversalExecutor wraps the BasicExecutor
type UniversalExecutor struct {
BasicExecutor
}