blob: f47c54051661d0c1272283ca4a40c89908d217a8 (
plain)
1
2
3
4
|
export const wellKnownServices = [
['twitter.com', username => `https://twitter.com/${username}`],
['github.com', username => `https://github.com/${username}`],
] as [string, (username: string) => string][];
|