(method: &str)
| 823 | } |
| 824 | |
| 825 | pub fn is_metro_proxy_method(method: &str) -> bool { |
| 826 | matches!(method, "GET" | "HEAD" | "POST") |
| 827 | } |
| 828 | |
| 829 | fn metro_frontend_query_with_socket(query: Option<&str>, web_socket_debugger_url: &str) -> String { |
| 830 | let socket_param = web_socket_debugger_url |
no outgoing calls
no test coverage detected