import { requireSession } from "@/lib/session"; import { apiFetch } from "@/lib/api"; import type { EslResult, FreeswitchChannels } from "@/lib/platform-types"; import { FreeswitchView } from "./freeswitch-view"; export default async function FreeswitchPage() { const session = await requireSession(); const result = await apiFetch>("/platform/freeswitch/channels", session.accessToken); return ; }