()
| 8 | use tauri::AppHandle; |
| 9 | |
| 10 | /// The API is only ever reached from this machine: the website talks to |
| 11 | /// `https://127.1:57404`. Binding the wildcard address exposed an |
| 12 | /// unauthenticated `/run` to every device on the local network, and the |
| 13 | /// certificate's SANs could never cover a LAN address anyway. |
| 14 | const BIND_ADDR: &str = "127.0.0.1:57404"; |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected