Evgenii Stratonikov
9f4ce600ac
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 1m29s
DCO action / DCO (pull_request) Successful in 1m56s
Vulncheck / Vulncheck (pull_request) Successful in 2m22s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m41s
Build / Build Components (pull_request) Successful in 2m58s
Tests and linters / gopls check (pull_request) Successful in 3m14s
Tests and linters / Staticcheck (pull_request) Successful in 3m16s
Tests and linters / Lint (pull_request) Successful in 4m2s
Tests and linters / Tests (pull_request) Successful in 4m47s
Tests and linters / Tests with -race (pull_request) Successful in 5m55s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
17 lines
479 B
Go
17 lines
479 B
Go
package frostfsid
|
|
|
|
func init() {
|
|
initFrostfsIDCreateNamespaceCmd()
|
|
initFrostfsIDListNamespacesCmd()
|
|
initFrostfsIDCreateSubjectCmd()
|
|
initFrostfsIDDeleteSubjectCmd()
|
|
initFrostfsIDListSubjectsCmd()
|
|
initFrostfsIDCreateGroupCmd()
|
|
initFrostfsIDDeleteGroupCmd()
|
|
initFrostfsIDListGroupsCmd()
|
|
initFrostfsIDAddSubjectToGroupCmd()
|
|
initFrostfsIDRemoveSubjectFromGroupCmd()
|
|
initFrostfsIDListGroupSubjectsCmd()
|
|
initFrostfsIDAddSubjectKeyCmd()
|
|
initFrostfsIDRemoveSubjectKeyCmd()
|
|
}
|