mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
ea79be64da
* refactor(artifact): remove oci artifact support - add header to referrers call to indicated applied artifact type filters Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com> * feat(gc): simplify gc logic to increase coverage Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com> --------- Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com>
12 lines
295 B
Go
12 lines
295 B
Go
package bolt
|
|
|
|
// MetadataDB.
|
|
const (
|
|
ManifestDataBucket = "ManifestData"
|
|
IndexDataBucket = "IndexData"
|
|
RepoMetadataBucket = "RepoMetadata"
|
|
UserDataBucket = "UserData"
|
|
VersionBucket = "Version"
|
|
StarredReposKey = "StarredReposKey"
|
|
BookmarkedReposKey = "BookmarkedReposKey"
|
|
)
|