z1_filetest.gno

0.48 Kb ยท 32 lines
 1package main
 2
 3import "gno.land/r/demo/emit"
 4
 5func main() {
 6	emit.Emit("foo")
 7	emit.Emit("bar")
 8}
 9
10// Events:
11// [
12//   {
13//     "type": "EventName",
14//     "attrs": [
15//       {
16//         "key": "key",
17//         "value": "foo"
18//       }
19//     ],
20//     "pkg_path": "gno.land/r/demo/emit"
21//   },
22//   {
23//     "type": "EventName",
24//     "attrs": [
25//       {
26//         "key": "key",
27//         "value": "bar"
28//       }
29//     ],
30//     "pkg_path": "gno.land/r/demo/emit"
31//   }
32// ]