mirror of
https://github.com/RedDeadDepresso/KKAFIO.git
synced 2025-12-22 17:30:01 +00:00
fix: checkboxes changes saved
This commit is contained in:
15
app/modules/handler.py
Normal file
15
app/modules/handler.py
Normal 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()
|
||||
|
||||
Reference in New Issue
Block a user