blob: 848dac773cbef2cf4373effaf8b86f6c34bacf93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()
}
|