k9s/internal/config/plugin.go

11 lines
268 B
Go

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"`
}