hotalert/cmd/directory.go

15 lines
281 B
Go
Raw Permalink Normal View History

2022-11-03 20:04:14 +00:00
package cmd
import (
"github.com/spf13/cobra"
"hotalert/logging"
)
var directoryCmd = &cobra.Command{
Use: "directory",
Short: "execute each yaml file from a directory",
Run: func(cmd *cobra.Command, args []string) {
logging.SugaredLogger.Fatal("not implemented")
},
}