1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 01:55:36 +02:00
Files
misskey/src/well-known-services.ts
2020-08-07 11:27:37 +09:00

5 lines
210 B
TypeScript

export const wellKnownServices = [
['twitter.com', username => `https://twitter.com/${username}`],
['github.com', username => `https://github.com/${username}`],
] as [string, (username: string) => string][];