You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
158 B

9 years ago
9 years ago
9 years ago
  1. package types
  2. type EventsMode int8
  3. const (
  4. EventsModeOff = EventsMode(0)
  5. EventsModeOn = EventsMode(1)
  6. )
  7. type Event struct {
  8. Key string
  9. Data []byte
  10. }