12 lines
142 B
Go
12 lines
142 B
Go
|
package android
|
||
|
|
||
|
import (
|
||
|
_ "golang.org/x/mobile/bind"
|
||
|
)
|
||
|
|
||
|
type Bridge interface {
|
||
|
LoadURL(url string)
|
||
|
GetTitle() string
|
||
|
GetURL() string
|
||
|
}
|