William Petit
7c75b478a3
All checks were successful
arcad/arcast/pipeline/head This commit looks good
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
|
|
}
|