frostfs-node/cmd/frostfs-adm/internal/modules/morph/frostfsid/root.go
Alexander Chuprov 2be7c21568
All checks were successful
DCO action / DCO (pull_request) Successful in 38s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m35s
Build / Build Components (pull_request) Successful in 1m47s
Vulncheck / Vulncheck (pull_request) Successful in 1m40s
Tests and linters / Staticcheck (pull_request) Successful in 2m7s
Tests and linters / Lint (pull_request) Successful in 2m51s
Tests and linters / Run gofumpt (pull_request) Successful in 4m28s
Tests and linters / Tests (pull_request) Successful in 5m19s
Tests and linters / gopls check (pull_request) Successful in 5m29s
Tests and linters / Tests with -race (pull_request) Successful in 5m52s
[#1614] adm/frostfsid: Add 'delete-kv'
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2025-02-07 14:45:04 +03:00

19 lines
532 B
Go

package frostfsid
func init() {
initFrostfsIDCreateNamespaceCmd()
initFrostfsIDListNamespacesCmd()
initFrostfsIDCreateSubjectCmd()
initFrostfsIDDeleteSubjectCmd()
initFrostfsIDListSubjectsCmd()
initFrostfsIDCreateGroupCmd()
initFrostfsIDDeleteGroupCmd()
initFrostfsIDListGroupsCmd()
initFrostfsIDAddSubjectToGroupCmd()
initFrostfsIDRemoveSubjectFromGroupCmd()
initFrostfsIDListGroupSubjectsCmd()
initFrostfsIDSetKVCmd()
initFrostfsIDDeleteKVCmd()
initFrostfsIDAddSubjectKeyCmd()
initFrostfsIDRemoveSubjectKeyCmd()
}