(self)
| 213 | @cherrypy.expose |
| 214 | @cherrypy.tools.json_out() |
| 215 | def vehicle(self): |
| 216 | return dict(position=self.drone.get_location()) |
| 217 | |
| 218 | @cherrypy.expose |
| 219 | def track(self, lat=None, lon=None): |
nothing calls this directly
no test coverage detected