identity_document/service/
mod.rs

1// Copyright 2020-2023 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Implements the DID Document Service specification.
5#![allow(clippy::module_inception)]
6
7mod builder;
8mod service;
9mod service_endpoint;
10
11pub use self::builder::ServiceBuilder;
12pub use self::service::Service;
13pub use self::service_endpoint::ServiceEndpoint;