baseid_did/methods/
mod.rs

1//! DID method implementations.
2//!
3//! Each submodule implements the [`DidResolver`](crate::resolution::DidResolver)
4//! trait for a specific DID method.
5
6pub mod jwk;
7pub mod key;
8pub mod peer;
9pub mod web;
10pub mod webvh;