tools.go 329 B

1234567891011121314
  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 tools
  5. package dummy
  6. // This is a dummy go file to add required module dependencies to go.mod.
  7. import (
  8. _ "golang.org/x/mobile/bind"
  9. _ "robpike.io/ivy"
  10. )