10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
import { EndpointRequest, EndpointResponse } from "../../plugos/hooks/endpoint";
|
|
|
|
export function endpointTest(req: EndpointRequest): EndpointResponse {
|
|
console.log("I'm running on the server!", req);
|
|
return {
|
|
status: 200,
|
|
body: "Hello world!",
|
|
};
|
|
}
|