Files
wehub-resource-sync dbe3ade0dc
Enforce Pull-Request Rules / check (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:19:24 +08:00

15 lines
201 B
JavaScript

Module.register("helloworld", {
// Default module config.
defaults: {
text: "Hello World!"
},
getTemplate () {
return "helloworld.njk";
},
getTemplateData () {
return this.config;
}
});