12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
import { proxyBackendJson } from "@/lib/backend";
|
|
import type { AnnouncementDetail } from "@/lib/types";
|
|
|
|
type Params = {
|
|
params: Promise<{ id: string }>;
|
|
};
|
|
|
|
export async function GET(_request: Request, { params }: Params) {
|
|
const { id } = await params;
|
|
return proxyBackendJson<AnnouncementDetail>(`/mobile/announcements/${encodeURIComponent(id)}`);
|
|
}
|