mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 13:07:00 +01:00
10 lines
184 B
Rust
10 lines
184 B
Rust
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub enum ClientRequest {
|
||
|
SshKey(String),
|
||
|
}
|
||
|
|
||
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub enum ClientResponse {
|
||
|
SshKeys(Vec<String>),
|
||
|
}
|