cosmetics: do not swap what ought not to be swapped

This commit is contained in:
mirsal 2021-03-29 00:40:49 +00:00
parent 9f2dac0d35
commit 1b2333922f
1 changed files with 1 additions and 1 deletions

View File

@ -10,8 +10,8 @@ use async_trait::async_trait;
#[async_trait]
pub trait SSBKeypair {
fn from_json(obj: JsonValue) -> Self;
fn to_json(&self) -> JsonValue;
fn from_json(obj: JsonValue) -> Self;
async fn read_or_generate(path: PathBuf) -> Self;
}