All checks were successful
DCO action / DCO (pull_request) Successful in 44s
Vulncheck / Vulncheck (pull_request) Successful in 1m2s
Build / Build Components (pull_request) Successful in 1m36s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m37s
Tests and linters / gopls check (pull_request) Successful in 2m40s
Tests and linters / Tests with -race (pull_request) Successful in 3m15s
Tests and linters / Lint (pull_request) Successful in 4m33s
Tests and linters / Staticcheck (pull_request) Successful in 4m39s
Tests and linters / Run gofumpt (pull_request) Successful in 4m41s
Tests and linters / Tests (pull_request) Successful in 4m50s
Vulncheck / Vulncheck (push) Successful in 1m10s
Tests and linters / Run gofumpt (push) Successful in 1m23s
Pre-commit hooks / Pre-commit (push) Successful in 1m41s
Build / Build Components (push) Successful in 1m55s
Tests and linters / Staticcheck (push) Successful in 2m21s
Tests and linters / Lint (push) Successful in 3m9s
OCI image / Build container images (push) Successful in 4m19s
Tests and linters / Tests with -race (push) Successful in 5m17s
Tests and linters / Tests (push) Successful in 5m19s
Tests and linters / gopls check (push) Successful in 5m29s
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
19 lines
532 B
Go
19 lines
532 B
Go
package frostfsid
|
|
|
|
func init() {
|
|
initFrostfsIDCreateNamespaceCmd()
|
|
initFrostfsIDListNamespacesCmd()
|
|
initFrostfsIDCreateSubjectCmd()
|
|
initFrostfsIDDeleteSubjectCmd()
|
|
initFrostfsIDListSubjectsCmd()
|
|
initFrostfsIDCreateGroupCmd()
|
|
initFrostfsIDDeleteGroupCmd()
|
|
initFrostfsIDListGroupsCmd()
|
|
initFrostfsIDAddSubjectToGroupCmd()
|
|
initFrostfsIDRemoveSubjectFromGroupCmd()
|
|
initFrostfsIDListGroupSubjectsCmd()
|
|
initFrostfsIDSetKVCmd()
|
|
initFrostfsIDDeleteKVCmd()
|
|
initFrostfsIDAddSubjectKeyCmd()
|
|
initFrostfsIDRemoveSubjectKeyCmd()
|
|
}
|