Cockatrice/webclient/src/websocket/persistence/AdminPresistence.ts
Zach H 34d70980e8
Webatrice admin commands (#5051)
* Add AdminCommand.updateServerMessage

* Add AdminCommand.shutdownServer

* Add AdminCommand.reloadConfig

* Cleanup

* Add AdminCommand.adjustMod

* Lint

* Lint
2024-06-13 02:52:40 +00:00

17 lines
363 B
TypeScript

export class AdminPersistence {
static adjustMod(userName: string, shouldBeMod: boolean, shouldBeJudge: boolean) {
console.log('adjustMod');
}
static reloadConfig() {
console.log('reloadConfig');
}
static shutdownServer() {
console.log('shutdownServer');
}
static updateServerMessage() {
console.log('updateServerMessage');
}
}