9 lines
123 B
Go
9 lines
123 B
Go
package cmd
|
|
|
|
import "os"
|
|
|
|
// Execute is a stub. The real command tree is built in Plan 05.
|
|
func Execute() {
|
|
_ = os.Args
|
|
}
|