mirror of
https://github.com/RedDeadDepresso/KKAFIO.git
synced 2025-12-22 17:30:01 +00:00
16 lines
353 B
Python
16 lines
353 B
Python
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()
|
|
|