🛠 refactor(_exe): complete event router

This commit is contained in:
Eshan Roy
2024-11-29 19:36:11 +05:30
parent a918bf1137
commit c00415f993

View File

@@ -0,0 +1,10 @@
#include "event_router.h"
EventRouter *EventRouter::instance = nullptr;
EventRouter* EventRouter::ins() {
if (! instance) {
instance = new EventRouter;
}
return instance;
}