mirror of
https://github.com/juanfont/headscale.git
synced 2026-07-17 05:20:43 +09:00
e7851ef881
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
(cherry picked from commit f4fba32dc6)
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() {}
|