refactor(*): Move server into src

This commit is contained in:
Josh Creek
2023-07-09 22:40:42 +01:00
parent e2ae0573c4
commit f75dcb2ef0
12 changed files with 6 additions and 14 deletions
@@ -0,0 +1,14 @@
export class JoinRoomMessage {
type: string;
roomId: string;
userId: string;
name: string;
constructor(roomId: string, userId: string, name: string) {
this.type = 'join-room';
this.roomId = roomId;
this.userId = userId;
this.name = name;
}
}