mirror of
https://github.com/containers/skopeo.git
synced 2025-09-21 09:57:19 +00:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.11.2 to 0.11.4. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.11.2...v0.11.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
26 lines
600 B
Go
26 lines
600 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package genname contains constants for generated names.
|
|
package genname
|
|
|
|
const (
|
|
State = "state"
|
|
|
|
SizeCache = "sizeCache"
|
|
SizeCacheA = "XXX_sizecache"
|
|
|
|
WeakFields = "weakFields"
|
|
WeakFieldsA = "XXX_weak"
|
|
|
|
UnknownFields = "unknownFields"
|
|
UnknownFieldsA = "XXX_unrecognized"
|
|
|
|
ExtensionFields = "extensionFields"
|
|
ExtensionFieldsA = "XXX_InternalExtensions"
|
|
ExtensionFieldsB = "XXX_extensions"
|
|
|
|
WeakFieldPrefix = "XXX_weak_"
|
|
)
|