Add devices callback

This commit is contained in:
Hri7566 2023-09-09 01:41:57 -04:00
parent d46078efa1
commit c068545958
1 changed files with 2 additions and 0 deletions

View File

@ -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);