master
 1package cmd
 2
 3import (
 4	"github.com/kahnwong/swissknife/internal/timer"
 5	"github.com/spf13/cobra"
 6)
 7
 8var TimerCmd = &cobra.Command{
 9	Use:   "timer",
10	Short: "Create a timer",
11	RunE: func(cmd *cobra.Command, args []string) error {
12		return timer.Timer(args)
13	},
14}
15
16func init() {
17	rootCmd.AddCommand(TimerCmd)
18}