summaryrefslogtreecommitdiff
path: root/main.go
blob: 3306a9438f598db6723b5498c206b324aaa32c35 (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
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"

	"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 embeddedTemplates embed.FS

var appVersion string

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

	web.Register(rootCmd, embeddedTemplates, appVersion)
	client.Register(rootCmd)
	register.Register(rootCmd)

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