Add support for DID services and did:plc

This commit is contained in:
Michael Muré
2025-07-21 10:12:05 +02:00
parent 7b88f5587b
commit de98cf811b
17 changed files with 819 additions and 14 deletions

View File

@@ -16,4 +16,7 @@ var (
var (
// ErrNotFound indicates that the DID resolver was unable to find the DID document for the given DID.
ErrNotFound = fmt.Errorf("did not found")
// ErrResolutionFailure indicates that the DID resolver failed to resolve the DID, in a way that is not ErrNotFound
ErrResolutionFailure = fmt.Errorf("resolution failure")
)