From 90e2e053d25feabd2dcf384dfc262a8bcdbe3ab8 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Sat, 5 Mar 2022 12:53:15 -0700 Subject: Initial Commit --- termshare/cmd/root.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 termshare/cmd/root.go (limited to 'termshare/cmd/root.go') 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() +} -- cgit v1.2.3