diff service/rfid_pn532/ev.nim @ 507:f3c1d2e7c5df

add missing files for the record Ignore-this: 8541c95ef1644cf85b311259602d2892
author drewp@bigasterisk.com
date Sun, 21 Apr 2019 03:28:21 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/service/rfid_pn532/ev.nim	Sun Apr 21 03:28:21 2019 -0700
@@ -0,0 +1,10 @@
+import threadpool
+
+var events1: Channel[int]
+events1.send(1)
+
+proc main():
+  var events2: Channel[int]
+  events2.send(2)
+
+main()