Get the url of the Enterprise Server. :return: The current url
()
| 154 | |
| 155 | |
| 156 | def server_url() -> str: |
| 157 | """ |
| 158 | Get the url of the Enterprise Server. |
| 159 | |
| 160 | :return: The current url |
| 161 | """ |
| 162 | value = core.BNGetEnterpriseServerUrl() |
| 163 | if value is None: |
| 164 | raise RuntimeError(last_error()) |
| 165 | return value |
| 166 | |
| 167 | |
| 168 | def set_server_url(url: str): |
nothing calls this directly
no test coverage detected