8 lines
113 B
Go
8 lines
113 B
Go
|
package cmd
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func Start(ctx context.Context) error {
|
||
|
return rootCommand.ExecuteContext(ctx)
|
||
|
}
|