1
0
Fork 0

Initial commit

This commit is contained in:
amy 2024-12-22 20:25:09 +03:30 committed by GitHub
commit b6089a75ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 118 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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!")
}

View file

@ -0,0 +1,5 @@
{
"name": "hello-world",
"author": "Your name here",
"description": "An example shelter plugin"
}