Copy API URL to clipboard.
(self)
| 1302 | # API & Browser |
| 1303 | # ========================================================================= |
| 1304 | def _copy_api_url(self): |
| 1305 | """Copy API URL to clipboard.""" |
| 1306 | url = f"http://127.0.0.1:{self.fastapi_port.get()}" |
| 1307 | copy_to_clipboard(self.root, url) |
| 1308 | self._log(get_text("copied_to_clipboard")) |
| 1309 | |
| 1310 | def _api_test(self): |
| 1311 | """Test the API endpoint.""" |
nothing calls this directly
no test coverage detected