(self)
| 24 | |
| 25 | @cherrypy.expose |
| 26 | def start(self) -> Dict[str, str]: |
| 27 | self.api.backend.start() |
| 28 | self.api.reporter.run() |
| 29 | return {"ok": "node-proxy daemon started"} |
| 30 | |
| 31 | @cherrypy.expose |
| 32 | def reload(self) -> Dict[str, str]: |
no test coverage detected