fmt
This commit is contained in:
parent
c358202a3a
commit
0a2a054233
@ -922,6 +922,8 @@ mod test {
|
||||
panic!()
|
||||
}
|
||||
|
||||
//TODO: test Trezor response since tr isn't running fido 2.1 yet
|
||||
|
||||
#[test]
|
||||
fn response_yubikey() {
|
||||
test_response(&[
|
||||
|
@ -0,0 +1,7 @@
|
||||
use thiserror::Error;
|
||||
|
||||
#[derive(Clone, PartialEq, Eq, Debug)]
|
||||
pub enum ProtocolError {
|
||||
CborEncode,
|
||||
CborDecode { data: Vec<u8> },
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
mod cbor;
|
||||
|
||||
mod error;
|
||||
pub use self::cbor::*;
|
||||
pub use self::error::*;
|
||||
|
Loading…
x
Reference in New Issue
Block a user