[#20] schema: Drop `root` from namespace definition
DCO action / DCO (pull_request) Successful in 1m1s Details
Tests and linters / Tests (1.20) (pull_request) Successful in 1m23s Details
Tests and linters / Tests (1.21) (pull_request) Successful in 1m18s Details
Tests and linters / Tests with -race (pull_request) Successful in 1m20s Details
Tests and linters / Staticcheck (pull_request) Successful in 1m23s Details
Tests and linters / Lint (pull_request) Successful in 2m4s Details

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
pull/20/head
Dmitrii Stepanov 2023-11-15 12:45:14 +03:00
parent 17453d3cda
commit 5db67021e1
1 changed files with 5 additions and 5 deletions

View File

@ -13,17 +13,17 @@ const (
ResourceFormatNamespaceContainerObjects = "native:object/%s/%s/*"
ResourceFormatNamespaceContainerObject = "native:object/%s/%s/%s"
ResourceFormatRootObjects = "native:object/root/*"
ResourceFormatRootContainerObjects = "native:object/root/%s/*"
ResourceFormatRootContainerObject = "native:object/root/%s/%s"
ResourceFormatRootObjects = "native:object//*"
ResourceFormatRootContainerObjects = "native:object//%s/*"
ResourceFormatRootContainerObject = "native:object//%s/%s"
ResourceFormatAllObjects = "native:object/*"
ResourceFormatNamespaceContainer = "native:container/%s/%s"
ResourceFormatNamespaceContainers = "native:container/%s/*"
ResourceFormatRootContainer = "native:container/root/%s"
ResourceFormatRootContainers = "native:container/root/*"
ResourceFormatRootContainer = "native:container//%s"
ResourceFormatRootContainers = "native:container//*"
ResourceFormatAllContainers = "native:container/*"