mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 00:36:38 +00:00
- Add debug endpoint for monitoring netbird clients - Add types package with AccountID type - Refactor netbird roundtrip to key clients by AccountID - Multiple domains can share the same client per account - Add status notifier for tunnel connection updates - Add OIDC flags to CLI - Add tests for netbird client management
27 lines
538 B
Go
27 lines
538 B
Go
package main
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/netbirdio/netbird/proxy/cmd/proxy/cmd"
|
|
)
|
|
|
|
var (
|
|
// Version is the application version (set via ldflags during build)
|
|
Version = "dev"
|
|
|
|
// Commit is the git commit hash (set via ldflags during build)
|
|
Commit = "unknown"
|
|
|
|
// BuildDate is the build date (set via ldflags during build)
|
|
BuildDate = "unknown"
|
|
|
|
// GoVersion is the Go version used to build the binary
|
|
GoVersion = runtime.Version()
|
|
)
|
|
|
|
func main() {
|
|
cmd.SetVersionInfo(Version, Commit, BuildDate, GoVersion)
|
|
cmd.Execute()
|
|
}
|