<#600 Refactor osctrl package> Pull request opened...
# osctrl
g
#600 Refactor osctrl package Pull request opened by zhuoyuan-liu It reorganize the folder in the following way:
Copy code
osctrl/                    // root 
├── cmd/                   // contains main packages (binaries)
│   ├── tls/               // one binary 
│   └── admin/            // another binary 
├── pkg/                   // contains libraries and supporting code
│   ├── module1/
│   │   └── module1.go
│   └── module2/
│       └── module2.go
├── go.mod
└── go.sum
It intentionally did not move the
metrics
package as we would like to fully switch to Prometheus-based metrics to provide better visibility and easy usage. The next step is moving the main package to the cmd folder and making sure all pipelines working as expected. jmpsec/osctrl