blob: 6702d3d1b3b9c6bc7fd0d8d84b17346fab11d77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
;;; wasp-event-handlers --- Event handlers -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'wasp-bus)
(require 'wasp-twitch)
(setf
w/bus-event-handlers
(list
(cons '(monitor twitch chat incoming) #'w/twitch-handle-incoming-chat)
(cons '(monitor twitch redeem incoming) #'w/twitch-handle-redeem)
))
(provide 'wasp-event-handlers)
;;; wasp-event-handlers.el ends here
|