identity_document/service/
mod.rs

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

//! Implements the DID Document Service specification.
#![allow(clippy::module_inception)]

mod builder;
mod service;
mod service_endpoint;

pub use self::builder::ServiceBuilder;
pub use self::service::Service;
pub use self::service_endpoint::ServiceEndpoint;