'use server'; import { XMLParser } from 'fast-xml-parser'; export async function parseXML(xml: string) { const parser = new XMLParser({ ignoreAttributes: false }); return parser.parse(xml); }