webview_go
webview_go copied to clipboard
Navigate response headers
this program works:
package main
import "github.com/webview/webview_go"
func main() {
w := webview.New(false)
defer w.Destroy()
w.Navigate("http://example.com")
w.Run()
}
but how can I get the response headers from the Navigate?