summaryrefslogtreecommitdiff
path: root/termshare/cmd/root.go
diff options
context:
space:
mode:
Diffstat (limited to 'termshare/cmd/root.go')
-rw-r--r--termshare/cmd/root.go16
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()
+}