Files
celestine/src/server/github/generatePingEmbed.ts
2024-05-12 01:52:39 -07:00

6 lines
222 B
TypeScript

import { GithubPingPayload } from "../../interfaces/GitHubPayloads";
export const generatePingEmbed = (data: GithubPingPayload): string => {
return `[Now watching ${data.repository.name}](<${data.repository.url}>)`;
};