Files
thefeed/mobile/tools_gomobile.go
T
2026-05-07 13:51:59 +03:30

13 lines
353 B
Go

//go:build gomobiletools
package mobile
// Pins golang.org/x/mobile/bind* in go.mod so `go mod tidy` doesn't
// drop them between gomobile-bind invocations. The build tag keeps
// these out of normal compilation; the imports exist solely for go
// modules' dependency graph.
import (
_ "golang.org/x/mobile/bind"
_ "golang.org/x/mobile/bind/objc"
)