feat: establish NekoNest Cloud control and relay
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { getServiceStatusSnapshot } from "@/db/repository";
|
||||
import { apiError } from "../respond";
|
||||
|
||||
export async function GET() {
|
||||
try {
|
||||
const snapshot = await getServiceStatusSnapshot();
|
||||
return Response.json(snapshot, {
|
||||
headers: { "cache-control": "no-store" },
|
||||
});
|
||||
} catch (error) {
|
||||
const response = apiError(error);
|
||||
response.headers.set("cache-control", "no-store");
|
||||
return response;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user