import { apiContext } from "service-srv";
export const _ = {
url: "/",
async api() {
const { req, res } = apiContext(this);
return "This is api";
}