lefthk-core 0.3.2

A hotkey daemon for Adventurers
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

use super::command::utils::normalized_command::NormalizedCommand;

#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
pub struct Keybind {
    pub command: NormalizedCommand,
    pub modifier: Vec<String>,
    pub key: String,
}