diff options
author | Cody Hiar <cody@hiar.ca> | 2022-03-05 12:53:15 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2022-03-05 12:53:15 -0700 |
commit | 90e2e053d25feabd2dcf384dfc262a8bcdbe3ab8 (patch) | |
tree | 8e2799822b4de29014b86ca708123c1dfc8f45f5 /termshare/cmd/root.go |
Diffstat (limited to 'termshare/cmd/root.go')
-rw-r--r-- | termshare/cmd/root.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/termshare/cmd/root.go b/termshare/cmd/root.go new file mode 100644 index 0000000..848dac7 --- /dev/null +++ b/termshare/cmd/root.go @@ -0,0 +1,16 @@ +package cmd + +import ( + "github.com/spf13/cobra" +) + +var rootCmd = &cobra.Command{ + Use: "Termshare", + Short: "A terminal sharing application", + Long: "A super fun time application to share terminals", +} + +// Execute executes the root command. +func Execute() error { + return rootCmd.Execute() +} |