fix(examples): lowercase module name (#1)

This commit is contained in:
rhunk
2024-01-13 17:51:22 +01:00
committed by GitHub
parent 2e0b28f945
commit 4aa301f4f8
3 changed files with 10 additions and 7 deletions

View File

@@ -1,7 +1,8 @@
// ==SE_module==
// name: IPC Test
// name: ipc_test
// description: IPC Test
// version: 1.0
// author: John Doe
// author: SnapEnhance
// ==/SE_module==
var ipc = require("ipc")
@@ -14,4 +15,4 @@ module.onSnapEnhanceLoad = context => {
module.onSnapMainActivityCreate = activity => {
ipc.emit("myEvent", "hello", 255, activity.packageName)
}
}