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