1
0
forked from noxious/server

Greatly improved server code base

This commit is contained in:
2024-12-28 17:26:17 +01:00
parent bd85908014
commit bd3bf6f580
39 changed files with 227 additions and 246 deletions

View File

@ -0,0 +1,5 @@
import { Server } from 'socket.io'
export abstract class BaseCommand {
constructor(readonly io: Server) {}
}