(host string)
| 229 | } |
| 230 | |
| 231 | func isLocalhost(host string) bool { |
| 232 | return slices.Contains([]string{"localhost", "127.0.0.1", "[::1]", "::1"}, host) |
| 233 | } |
| 234 | |
| 235 | func openBrowser(url string, o *plugin.Options) { |
| 236 | // Construct URL. |
no outgoing calls
searching dependent graphs…