mirror of
https://github.com/block/goose.git
synced 2026-05-01 04:59:37 +00:00
7 lines
300 B
TypeScript
7 lines
300 B
TypeScript
// Map of announcement file names to their content
|
|
export const announcementContents: Record<string, string> = {};
|
|
|
|
// Helper function to get announcement content by filename
|
|
export function getAnnouncementContent(filename: string): string | null {
|
|
return announcementContents[filename] || null;
|
|
}
|