//go:build clientonly package main import ( "log" "code.crute.us/mcrute/ssh-proxy/cmd/client" // Import backup data. By default zoneinfo is installed in the docker image // if something breaks this will still result in us having correct TZ info. _ "time/tzdata" ) var version string func main() { cmd := client.NewClientCommand(version) if err := cmd.Execute(); err != nil { log.Fatalf("Error running root command: %s", err) } }