18 lines
289 B
Go
18 lines
289 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
. "code.squareroundforest.org/arpio/wand"
|
||
|
|
"code.squareroundforest.org/arpio/wand/internal/tests/testlib"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
Exec(
|
||
|
|
Group(
|
||
|
|
"test",
|
||
|
|
Default(Command("foo", testlib.Foo)),
|
||
|
|
Command("bar", testlib.Bar),
|
||
|
|
Command("baz", testlib.Baz),
|
||
|
|
),
|
||
|
|
)
|
||
|
|
}
|