forked from TrueCloudLab/frostfs-contract
13 lines
415 B
Go
13 lines
415 B
Go
|
/*
|
||
|
|
||
|
# Contract storage scheme
|
||
|
|
||
|
| Key | Value | Description |
|
||
|
|------------------------------------------|--------|-----------------------------------|
|
||
|
| 'c' + uint16(len(container)) + container | []byte | Namespace chain |
|
||
|
| 'n' + uint16(len(namespace)) + namespace | []byte | Container chain |
|
||
|
|
||
|
*/
|
||
|
|
||
|
package policy
|