@@ -11,12 +11,12 @@ import type { GamesList, Meta } from '@/ps/games/types';
1111import type { Register } from '@/sentinel/types' ;
1212
1313const PS_EVENT_HANDLERS = {
14- 'autores-handler' : { imports : [ 'autoResHandler' ] , importPath : '@/ps/handlers/autores' , fileName : 'autores' } ,
15- 'interface-handler' : { imports : [ 'interfaceHandler' ] , importPath : '@/ps/handlers/interface' , fileName : 'interface' } ,
16- 'joins-handler' : { imports : [ 'joinHandler' , 'leaveHandler' , 'nickHandler' ] , importPath : '@/ps/handlers/joins' , fileName : 'joins' } ,
17- 'raw-handler' : { imports : [ 'rawHandler' ] , importPath : '@/ps/handlers/raw' , fileName : 'raw' } ,
18- 'notify-handler' : { imports : [ 'notifyHandler' ] , importPath : '@/ps/handlers/notifications' , fileName : 'notifications' } ,
19- 'tour-handler' : { imports : [ 'tourHandler' ] , importPath : '@/ps/handlers/tours' , fileName : 'tours' } ,
14+ autoreshandler : { imports : [ 'autoResHandler' ] , importPath : '@/ps/handlers/autores' , fileName : 'autores' } ,
15+ interfacehandler : { imports : [ 'interfaceHandler' ] , importPath : '@/ps/handlers/interface' , fileName : 'interface' } ,
16+ joinshandler : { imports : [ 'joinHandler' , 'leaveHandler' , 'nickHandler' ] , importPath : '@/ps/handlers/joins' , fileName : 'joins' } ,
17+ rawhandler : { imports : [ 'rawHandler' ] , importPath : '@/ps/handlers/raw' , fileName : 'raw' } ,
18+ notifyhandler : { imports : [ 'notifyHandler' ] , importPath : '@/ps/handlers/notifications' , fileName : 'notifications' } ,
19+ tourhandler : { imports : [ 'tourHandler' ] , importPath : '@/ps/handlers/tours' , fileName : 'tours' } ,
2020} satisfies Record <
2121 string ,
2222 { imports : ( keyof typeof LivePSHandlers ) [ ] ; importPath : string ; fileName : string /* TODO: remove fileName */ }
0 commit comments