Skip to content
This repository has been archived by the owner on May 17, 2020. It is now read-only.

Add check command #23

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions cmd/karigo/commands/new.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package commands

import (
"github.com/spf13/cobra"
)

var cmdCheck = &cobra.Command{
Use: "new",
Short: "Check instance",
Run: func(cmd *cobra.Command, args []string) {
// TODO
},
}
1 change: 1 addition & 0 deletions cmd/karigo/commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
// Execute ...
func Execute() {
rootCmd.AddCommand(
cmdCheck,
cmdExec,
cmdRun,
cmdVersion,
Expand Down