fix: checkboxes changes saved

This commit is contained in:
RedDeadDepresso
2024-07-24 03:46:19 +01:00
parent 7a6d956c48
commit 977f701eef
14 changed files with 388 additions and 309 deletions

15
app/modules/handler.py Normal file
View File

@@ -0,0 +1,15 @@
class Handler:
def __str__(self) -> str:
return "Handler"
def loadConfig(self, config):
self.gamePath = config.get("Core", "GamePath")
self.config = config.get(str(self))
def handle(self, request):
pass
def setNext(self, request):
request.removeHandler()
request.process()