mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
19 lines
381 B
Go
19 lines
381 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/carapace-sh/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var reconnect_offlineCmd = &cobra.Command{
|
|
Use: "offline",
|
|
Short: "reset offline/unauthorized devices to force reconnect",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(reconnect_offlineCmd).Standalone()
|
|
|
|
reconnectCmd.AddCommand(reconnect_offlineCmd)
|
|
}
|