13 lines
171 B
Go
13 lines
171 B
Go
package status
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func CobraRunE(cmd *cobra.Command, args []string) error {
|
|
fmt.Printf("Not implemented yet\n")
|
|
|
|
return nil
|
|
}
|