summaryrefslogtreecommitdiffstats
path: root/third_party/rust/authenticator/src/ctap2/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/authenticator/src/ctap2/mod.rs')
-rw-r--r--third_party/rust/authenticator/src/ctap2/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/rust/authenticator/src/ctap2/mod.rs b/third_party/rust/authenticator/src/ctap2/mod.rs
new file mode 100644
index 0000000000..33ab859452
--- /dev/null
+++ b/third_party/rust/authenticator/src/ctap2/mod.rs
@@ -0,0 +1,10 @@
+#[allow(dead_code)] // TODO(MS): Remove me asap
+pub mod commands;
+pub use commands::get_assertion::GetAssertionResult;
+
+pub mod attestation;
+
+pub mod client_data;
+pub(crate) mod preflight;
+pub mod server;
+pub(crate) mod utils;