10 lines
328 B
Go
10 lines
328 B
Go
//go:build !(js && wasm)
|
|
|
|
// The wasm client entry point (main.go) builds only under GOOS=js GOARCH=wasm.
|
|
// This native placeholder keeps the package buildable on the host so a plain
|
|
// `go build ./...` succeeds; the real client is built by ./build (or the dev
|
|
// server) with GOOS=js GOARCH=wasm.
|
|
package main
|
|
|
|
func main() {}
|