goose/ui/desktop/announcements/content.ts
2025-06-27 10:50:32 -07:00

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;
}