7 lines
208 B
TypeScript
7 lines
208 B
TypeScript
import type { APIEvent } from "@solidjs/start/server";
|
|
import { rest } from "../_lib";
|
|
|
|
export const GET = (event: APIEvent) => rest(async (caller) => {
|
|
return caller.lineage.jsonService.misc();
|
|
}, event);
|