this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ResolveDID returns map[string]any

+2 -2
+2 -2
atproto/identity/directory.go
··· 24 24 // - API client, which just makes requests to PDS (or other remote service) 25 25 // - client for shared network cache (eg, Redis) 26 26 type Directory interface { 27 - LookupHandle(ctx context.Context, hdl syntax.Handle) (*Identity, error) 27 + LookupHandle(ctx context.Context, handle syntax.Handle) (*Identity, error) 28 28 LookupDID(ctx context.Context, did syntax.DID) (*Identity, error) 29 29 Lookup(ctx context.Context, atid syntax.AtIdentifier) (*Identity, error) 30 30 31 - ResolveDID(ctx context.Context, did syntax.DID) (*DIDDocument, error) 31 + ResolveDID(ctx context.Context, did syntax.DID) (map[string]any, error) 32 32 ResolveHandle(ctx context.Context, handle syntax.Handle) (syntax.DID, error) 33 33 34 34 // Flushes any cache of the indicated identifier. If directory is not using caching, can ignore this.