ssi_vc/v1/syntax/
mod.rs

1//! Syntaxes for the VC data model.
2//! JSON syntax for Credentials and Presentations.
3use super::V1;
4
5mod credential;
6mod presentation;
7
8pub use credential::*;
9pub use presentation::*;
10
11pub type Context<C = ()> = crate::syntax::Context<V1, C>;