identity_document/document/mod.rs
1// Copyright 2020-2023 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Defines the core (implementation agnostic) DID Document type.
5
6#![allow(clippy::module_inception)]
7
8pub use self::builder::DocumentBuilder;
9pub use self::core_document::CoreDocument;
10
11mod builder;
12mod core_document;