mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-07-31 04:22:44 +00:00
Update k8s.io/kubernetes to v1.8. Update k8s.io/client-go to v5.0.0 Update k8s.io/apimachinery to match Pull in k8s.io/api release-1.8 branch Pull in k8s.io/code-generator release-1.8 branch Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
18 lines
339 B
Go
18 lines
339 B
Go
// Copyright 2010 Petar Maymounkov. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package llrb
|
|
|
|
type Int int
|
|
|
|
func (x Int) Less(than Item) bool {
|
|
return x < than.(Int)
|
|
}
|
|
|
|
type String string
|
|
|
|
func (x String) Less(than Item) bool {
|
|
return x < than.(String)
|
|
}
|