mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-22 23:51:16 +00:00
20 lines
343 B
Go
20 lines
343 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rsteube/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var logoutCmd = &cobra.Command{
|
|
Use: "logout [SERVER]",
|
|
Short: "Log out from a registry",
|
|
GroupID: "common",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(logoutCmd).Standalone()
|
|
|
|
rootCmd.AddCommand(logoutCmd)
|
|
}
|