mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-17 22:48:13 +00:00
f3f4c67b36
Multi-agent AI gateway with WebSocket RPC, HTTP API, and messaging channel integrations. Go port of OpenClaw with multi-tenant PostgreSQL, per-user isolation, security hardening, and production observability. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
348 B
Go
17 lines
348 B
Go
//go:build !tsnet
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/nextlevelbuilder/goclaw/internal/config"
|
|
)
|
|
|
|
// initTailscale is a no-op when built without the "tsnet" tag.
|
|
// Build with `go build -tags tsnet` to enable Tailscale listener.
|
|
func initTailscale(_ context.Context, _ *config.Config, _ http.Handler) func() {
|
|
return nil
|
|
}
|