frostfs-node/cmd/frostfs-adm/internal/modules/morph/frostfsid/root.go
Alexander Chuprov b504078794
All checks were successful
DCO action / DCO (pull_request) Successful in 37s
Vulncheck / Vulncheck (pull_request) Successful in 58s
Build / Build Components (pull_request) Successful in 1m31s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m32s
Tests and linters / gopls check (pull_request) Successful in 2m41s
Tests and linters / Tests with -race (pull_request) Successful in 3m7s
Tests and linters / Run gofumpt (pull_request) Successful in 4m5s
Tests and linters / Staticcheck (pull_request) Successful in 4m38s
Tests and linters / Lint (pull_request) Successful in 4m42s
Tests and linters / Tests (pull_request) Successful in 4m46s
[#1614] adm/frostfsid: Add 'delete-kv'
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
2025-02-10 15:21:36 +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()
}