Adds the spf13/cobra cli handling package. Main() now processes cli commands defined by the /cli package.
10 lines
89 B
Go
10 lines
89 B
Go
package main
|
|
|
|
import (
|
|
"github.com/alcionai/corso/cli"
|
|
)
|
|
|
|
func main() {
|
|
cli.Handle()
|
|
}
|