github.com/huiliang/nomad@v0.2.1-0.20151124023127-7a8b664699ff/client/driver/executor/exec_universal.go (about) 1 // +build !linux 2 3 package executor 4 5 func NewExecutor() Executor { 6 return &UniversalExecutor{BasicExecutor{}} 7 } 8 9 // UniversalExecutor wraps the BasicExecutor 10 type UniversalExecutor struct { 11 BasicExecutor 12 }