2015-09-16 01:54:55 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package executor
|
|
|
|
|
2015-11-03 20:47:48 +00:00
|
|
|
func NewExecutor() Executor {
|
|
|
|
return &UniversalExecutor{BasicExecutor{}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UniversalExecutor wraps the BasicExecutor
|
|
|
|
type UniversalExecutor struct {
|
|
|
|
BasicExecutor
|
|
|
|
}
|