tools.go 348 B

123456789101112131415
  1. // Copyright 2021 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build ignore
  5. // +build ignore
  6. package dummy
  7. // This is a dummy go file to add required module dependencies to go.mod.
  8. import (
  9. _ "golang.org/x/mobile/bind"
  10. _ "robpike.io/ivy"
  11. )