This is a backend project which the dashboard depends on, implemented by Golang.
├── README.md ├── VERSION ├── build-tools ├── build.sh ├── cmd ├── conf ├── entry.sh ├── go.mod ├── go.sum ├── internal ├── run.sh └── test
cmd directory is the project entrance.internal directory contains the main logic of manager-api.conf directory contains the default configuration file.test directory contains E2E test cases.