Files
cell/test_shop/.cell/modules/jj_mod@v0.6.3/main.js
John Alanbrook 939269b060
Some checks failed
Build and Deploy / build-macos (push) Failing after 7s
Build and Deploy / build-linux (push) Has been cancelled
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
initial modules attempt
2025-05-29 18:48:19 -05:00

17 lines
269 B
JavaScript

// Main entry point for jj_mod
var utils = use("./utils")
log.console("jj_mod loaded! Version 0.6.3")
return {
utils: utils,
version: "0.6.3",
create_thing: function(name) {
return {
name: name,
id: utils.random_range(1000, 9999)
}
}
}