(self)
| 25 | return result |
| 26 | |
| 27 | def list_tunnels(self): |
| 28 | cmd_args = ["list", "--output", "json"] |
| 29 | listed = self._run_command(cmd_args, "list") |
| 30 | return json.loads(listed.stdout) |
| 31 | |
| 32 | def get_management_token(self, config, config_path, resource): |
| 33 | basecmd = [config.cloudflared_binary] |
nothing calls this directly
no test coverage detected