mirror of
https://github.com/juanfont/headscale.git
synced 2026-07-15 20:40:55 +09:00
f4fba32dc6
A raw coder/websocket dial and the real tailscale.com js/wasm control client under Node, both against headscale alongside normal Tailscale clients. Updates #3357
9 lines
269 B
Go
9 lines
269 B
Go
//go:build !js
|
|
|
|
// This package only does something when built for GOOS=js (see main.go). The
|
|
// stub exists so `go build ./...` and `go vet ./...` on the host don't fail with
|
|
// "build constraints exclude all Go files" for this directory.
|
|
package main
|
|
|
|
func main() {}
|