Add devices callback
This commit is contained in:
parent
d46078efa1
commit
c068545958
|
@ -3,7 +3,9 @@ import { EventGroup, eventGroups } from "../../events";
|
||||||
export const EVENTGROUP_USER = new EventGroup("user");
|
export const EVENTGROUP_USER = new EventGroup("user");
|
||||||
|
|
||||||
import { hi } from "./handlers/hi";
|
import { hi } from "./handlers/hi";
|
||||||
|
import { devices } from "./handlers/devices";
|
||||||
|
|
||||||
EVENTGROUP_USER.add(hi);
|
EVENTGROUP_USER.add(hi);
|
||||||
|
EVENTGROUP_USER.add(devices);
|
||||||
|
|
||||||
eventGroups.push(EVENTGROUP_USER);
|
eventGroups.push(EVENTGROUP_USER);
|
||||||
|
|
Loading…
Reference in New Issue