Create a Remote and add it to the list of known remotes (saved to Settings) :param name: Identifier for remote :param address: Base address (HTTPS) for all api requests
(name: str, address: str)
| 76 | |
| 77 | |
| 78 | def create_remote(name: str, address: str) -> 'Remote': |
| 79 | """ |
| 80 | Create a Remote and add it to the list of known remotes (saved to Settings) |
| 81 | |
| 82 | :param name: Identifier for remote |
| 83 | :param address: Base address (HTTPS) for all api requests |
| 84 | """ |
| 85 | binaryninja._init_plugins() |
| 86 | return Remote(core.BNCollaborationCreateRemote(name, address)) |
| 87 | |
| 88 | |
| 89 | def remove_known_remote(remote: 'Remote') -> None: |