This commit is contained in:
insanity@loafle.com 2017-05-16 17:13:28 +09:00
parent 9d1ebadbba
commit 24bc38598a

View File

@ -1,7 +1,12 @@
package messages package messages
type Event struct { type Event struct {
Type string Type int
Id string Id string
Data []byte Data []byte
} }
const (
EVT_TYPE_TASK = 1
EVT_TYPE_NONE = 2
)