refactor imports (#5058)

This commit is contained in:
Jeremy Letto 2024-06-17 00:00:23 -05:00 committed by GitHub
parent c4bf9eb61c
commit bdcd083eea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 12 additions and 18 deletions

View file

@ -1,6 +1,6 @@
import { RoomCommands, SessionCommands } from 'websocket';
export default class RoomsService {
export class RoomsService {
static joinRoom(roomId: number): void {
SessionCommands.joinRoom(roomId);
}