Pre-rename

This commit is contained in:
Zef Hemel
2022-02-26 12:59:16 +01:00
parent 2986c2c231
commit 3cf84af894
6 changed files with 42 additions and 15 deletions
+6 -1
View File
@@ -27,8 +27,13 @@
"key": "Ctrl-2"
}
},
"events": {},
"events": {
"ready": ["welcome"]
},
"functions": {
"welcome": {
"path": "./welcome.ts"
},
"word_count_command": {
"path": "./word_count_command.ts:wordCount"
},
+3
View File
@@ -0,0 +1,3 @@
export default function welcome() {
console.log("Hello world!");
}