2022-03-23 14:41:12 +00:00
|
|
|
import {
|
|
|
|
EndpointRequest,
|
|
|
|
EndpointResponse,
|
|
|
|
} from "../../plugbox/feature/endpoint";
|
2022-03-21 14:21:34 +00:00
|
|
|
|
|
|
|
export function endpointTest(req: EndpointRequest): EndpointResponse {
|
|
|
|
console.log("I'm running on the server!", req);
|
|
|
|
return {
|
|
|
|
status: 200,
|
|
|
|
body: "Hello world!",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function welcome() {
|
2022-03-23 14:41:12 +00:00
|
|
|
console.log("Hello world!");
|
2022-03-18 13:59:04 +00:00
|
|
|
}
|