identity_document/document/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2020-2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Defines the core (implementation agnostic) DID Document type.

#![allow(clippy::module_inception)]

pub use self::builder::DocumentBuilder;
pub use self::core_document::CoreDocument;

mod builder;
mod core_document;