13 lines
207 B
Go
13 lines
207 B
Go
// +build !linux
|
|
|
|
package executor
|
|
|
|
func NewExecutor() Executor {
|
|
return &UniversalExecutor{BasicExecutor{}}
|
|
}
|
|
|
|
// UniversalExecutor wraps the BasicExecutor
|
|
type UniversalExecutor struct {
|
|
BasicExecutor
|
|
}
|