8 lines
103 B
Rust
8 lines
103 B
Rust
|
use thiserror::Error;
|
||
|
|
||
|
pub mod v1;
|
||
|
pub mod v2_rc4;
|
||
|
|
||
|
#[derive(Error, Debug)]
|
||
|
pub enum QmcCryptoError {}
|