tangled
alpha
login
or
join now
yoyle.city
/
skittr
6
fork
atom
this repo has no description
atproto
bluesky
typescript
express
6
fork
atom
overview
issues
3
pulls
pipelines
idk what else
lime360
3 months ago
be133275
c4f5a3c9
1/1
test.yml
success
29s
+2
-8
1 changed file
expand all
collapse all
unified
split
src
lib
resolver.ts
+2
-8
src/lib/resolver.ts
reviewed
···
25
25
return null;
26
26
}
27
27
28
28
-
export async function byHTTP(
29
29
-
domain: string,
30
30
-
secure: boolean = true,
31
31
-
): Promise<string | any> {
28
28
+
export async function byHTTP(domain: string, secure: boolean = true): Promise<string | any> {
32
29
const agent = new Agent({ keepAliveTimeout: 10000 });
33
30
setGlobalDispatcher(agent);
34
31
···
54
51
}
55
52
}
56
53
57
57
-
export async function byPLC(
58
58
-
did: string,
59
59
-
endpoint: string = "https://plc.directory",
60
60
-
) {
54
54
+
export async function byPLC(did: string, endpoint: string = "https://plc.directory"): Promise<any> {
61
55
const agent = new Agent({ keepAliveTimeout: 10000 });
62
56
setGlobalDispatcher(agent);
63
57