👍️[Update] Model : Watchdogの引数(*args, **kwargs)を追加

This commit is contained in:
misyaguziya
2024-09-26 12:50:00 +09:00
parent 726dff60bd
commit 71225bf045

View File

@@ -1528,7 +1528,7 @@ class Controller:
th_download.start()
@staticmethod
def startWatchdog() -> dict:
def startWatchdog(*args, **kwargs) -> dict:
model.startWatchdog()
return {"status":200, "result":True}
@@ -1538,7 +1538,7 @@ class Controller:
return {"status":200, "result":True}
@staticmethod
def stopWatchdog() -> dict:
def stopWatchdog(*args, **kwargs) -> dict:
model.stopWatchdog()
return {"status":200, "result":True}