summaryrefslogtreecommitdiff
path: root/main.go
blob: 81863d0207507d0207b83b7c5d41d0399389b290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//go:build !clientonly

package main

import (
	"embed"
	"log"

	"code.crute.us/mcrute/ssh-proxy/app"
	"code.crute.us/mcrute/ssh-proxy/cmd/client"
	"code.crute.us/mcrute/ssh-proxy/cmd/register"
	"code.crute.us/mcrute/ssh-proxy/cmd/web"

	"code.crute.us/mcrute/golib/cli"
	"code.crute.us/mcrute/golib/fs"

	"github.com/spf13/cobra"

	// 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"
)

//go:embed templates
var templates embed.FS

//go:embed clients
var clients embed.FS

var version string

func main() {
	r := &cobra.Command{
		Use:     "web-server",
		Short:   "SSH proxy web server",
		Version: version,
	}
	cli.AddFlags(r, &app.Config{}, app.DefaultConfig, "")

	web.Register(r, fs.MustSub(templates, "templates"), clients, version)
	client.Register(r, version)
	register.Register(r)

	if err := r.Execute(); err != nil {
		log.Fatalf("Error running root command: %s", err)
	}
}