All checks were successful
DCO action / DCO (pull_request) Successful in 38s
Vulncheck / Vulncheck (pull_request) Successful in 1m7s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m24s
Build / Build Components (pull_request) Successful in 1m38s
Tests and linters / Run gofumpt (pull_request) Successful in 1m35s
Tests and linters / Staticcheck (pull_request) Successful in 1m57s
Tests and linters / Lint (pull_request) Successful in 2m40s
Tests and linters / Tests (pull_request) Successful in 4m0s
Tests and linters / gopls check (pull_request) Successful in 4m50s
Tests and linters / Tests with -race (pull_request) Successful in 4m53s
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()
|
|
}
|