mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
12 lines
309 B
Go
12 lines
309 B
Go
//go:build tools
|
|
|
|
// Install tools specified in go.mod.
|
|
// See https://marcofranssen.nl/manage-go-tools-via-go-modules for idiom.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/bytecodealliance/wasm-tools-go/cmd/wit-bindgen-go"
|
|
)
|
|
|
|
//go:generate go install github.com/bytecodealliance/wasm-tools-go/cmd/wit-bindgen-go
|