alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
update identity resolver interface
author
Wesley Finck
date
9 months ago
(Oct 1, 2025, 3:53 PM -0700)
commit
5e4cfdb0
5e4cfdb0636b2a8906a5d2812a768ea719e5f441
parent
8ae1c132
8ae1c1323f0b4bddacee20a172e09d690cfa5eb9
+2
1 changed file
Expand all
Collapse all
Unified
Split
src
modules
atproto
domain
services
IIdentityResolutionService.ts
+2
src/modules/atproto/domain/services/IIdentityResolutionService.ts
View file
Reviewed
···
1
1
import { Result } from 'src/shared/core/Result';
2
2
import { DID } from '../DID';
3
3
import { DIDOrHandle } from '../DIDOrHandle';
4
4
+
import { Handle } from '../Handle';
4
5
5
6
export interface IIdentityResolutionService {
6
7
resolveToDID(identifier: DIDOrHandle): Promise<Result<DID>>;
8
8
+
resolveToHandle(identifier: DIDOrHandle): Promise<Result<Handle>>;
7
9
}