8 lines
176 B
Rust
8 lines
176 B
Rust
use ruma::signatures::Ed25519KeyPair;
|
|
|
|
use crate::Result;
|
|
|
|
pub trait Data {
|
|
fn load_keypair(&self) -> Result<Ed25519KeyPair>;
|
|
fn remove_keypair(&self) -> Result<()>;
|
|
}
|