-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
42 lines (40 loc) · 2.39 KB
/
main.go
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
/*
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/
package main
import (
"github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/add"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/id_token"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/install"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/remove"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/start"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/uid"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/uninstall"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/frontend"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/frontend/add"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/frontend/install"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/frontend/remove"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/frontend/start"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/core"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/core/add"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/core/remove"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/functions"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/functions/add"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/functions/remove"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/install"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/start"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/pull_config"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/add_param"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/get_secret"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/update_param"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/remove_param"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/frontend/build_frontend_env"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/backend/build_training_env"
_ "github.com/DSGT-DLP/Deep-Learning-Playground/cli/cmd/serverless/build_serverless_env"
)
func main() {
cmd.Execute()
}