21 lines
420 B
TypeScript
21 lines
420 B
TypeScript
import {
|
|
EndpointRequest,
|
|
EndpointResponse,
|
|
} from "../../plugos/feature/endpoint";
|
|
|
|
export function endpointTest(req: EndpointRequest): EndpointResponse {
|
|
console.log("I'm running on the server!", req);
|
|
return {
|
|
status: 200,
|
|
body: "Hello world!",
|
|
};
|
|
}
|
|
|
|
export function welcome(plugName: string) {
|
|
if (plugName !== "core") {
|
|
return;
|
|
}
|
|
console.log("Hello world!!", plugName);
|
|
return "hi";
|
|
}
|