Select the types of activity you want to include in your feed.
1import type { APIContext } from 'astro' 2import { generateRSS } from '@/utils/feed' 3 4export async function GET(context: APIContext) { 5 return generateRSS(context) 6}