iceshrimp-legacy/src/well-known-services.ts

5 lines
210 B
TypeScript
Raw Normal View History

2020-08-07 04:27:37 +02:00
export const wellKnownServices = [
['twitter.com', username => `https://twitter.com/${username}`],
['github.com', username => `https://github.com/${username}`],
] as [string, (username: string) => string][];