13 lines
213 B
Go
13 lines
213 B
Go
//go:build !ci && !wasm && test_web_driver
|
|
|
|
package app
|
|
|
|
import (
|
|
"errors"
|
|
"net/url"
|
|
)
|
|
|
|
func (a *fyneApp) OpenURL(url *url.URL) error {
|
|
return errors.New("OpenURL is not supported with the test web driver.")
|
|
}
|