mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-06-27 16:35:59 +00:00
9 lines
176 B
Rust
9 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<()>;
|
||
|
}
|