Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/openstatusHQ/openstatus. ๐ซ Status page with uptime monitoring & API monitoring as code ๐ซ openstatus.dev
bun drizzle-orm monitoring monitoring-as-code nextjs observability on-call open-source shadcn-ui status-page statuspage synthetic-monitoring tinybird turso uptime uptime-checker uptime-monitor
Something went wrong. Try again.
651 B ยท 29 lines
TypeScript
123456789101112131415161718192021222324252627282930export const author = { "Maximilian Kaske": { name: "Maximilian Kaske", url: "https://x.com/mxkaske", }, "Thibault Le Ouay Ducasse": { name: "Thibault Le Ouay Ducasse", url: "https://bsky.app/profile/thibaultleouay.dev", }, "Moulik Aggarwal": { name: "Moulik Aggarwal", url: "https://x.com/aggmoulik", }, "Colin Ozanne": { name: "Colin Ozanne", url: "https://finxol.eu", }, "Max Lim": { name: "Max Lim", url: "https://github.com/zapteryx", },} as const;
export function getAuthor(name: string) { if (name in author) { return author[name as keyof typeof author]; } return name;}