mirror of
https://github.com/anotherhadi/jwt-tui.git
synced 2026-06-26 01:02:33 +02:00
f3dce1f4ab
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
15 lines
500 B
Go
15 lines
500 B
Go
package config
|
|
|
|
type Keybindings struct {
|
|
Quit string `mapstructure:"quit"`
|
|
CycleFocus string `mapstructure:"cycle_focus"`
|
|
Edit string `mapstructure:"edit"`
|
|
EditExternal string `mapstructure:"edit_external"`
|
|
Docs string `mapstructure:"docs"`
|
|
HelpToggle string `mapstructure:"help_toggle"`
|
|
Clear string `mapstructure:"clear"`
|
|
Reset string `mapstructure:"reset"`
|
|
Copy string `mapstructure:"copy"`
|
|
Paste string `mapstructure:"paste"`
|
|
}
|