mirror of
https://github.com/hotomoe/hotomoe
synced 2024-12-15 23:28:08 +09:00
5 lines
210 B
TypeScript
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][];
|