package config
// Plugin describes a K9s plugin
type Plugin struct {
ShortCut string `yaml:"shortCut"`
Scopes []string `yaml:"scopes"`
Description string `yaml:"description"`
Command string `yaml:"command"`
Args []string `yaml:"args"`
}