1
0
Fork 0
shelter/plugins/hello-world/index.jsx
2024-12-22 20:25:09 +03:30

12 lines
226 B
JavaScript

const {
util: { log }
} = shelter;
export function onLoad() {
// you can safely run onLoad actions at the top level!
log("Hello, World from shelter!")
}
export function onUnload() {
log("Goodbye, World from shelter!")
}