Gateway/go.mod
Claude b33b5548ec
feat: LetheanGateway binary scaffold
Replaces Python+HAProxy gateway stack with a single Go binary:
- pkg/pairing: handshake with lthn.io (pair + heartbeat)
- pkg/meter: per-session bandwidth metering
- cmd/gateway: main binary with admin API on :8880
- Uses core/api for HTTP, pairs via /v1/gateway/* endpoints

Eliminates: Python lvpn, HAProxy config templating, legacy session management.
Keeps: WireGuard (managed via go-process when ready).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 04:54:43 +01:00

8 lines
117 B
Modula-2

module lethean.io/gateway
go 1.26.0
require (
dappco.re/go/api v0.8.0-alpha.1
dappco.re/go/core v0.8.0-alpha.1
)