mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-04-02 05:02:40 +08:00

fixes golint error in staging/src/k8s.io/sample-controller/pkg/apis/samplecontroller fixes golint errors in staging/src/k8s.io/sample-apiserver/pkg/cmd/server fixex golint errors in staging/src/k8s.io/sample-apiserver/pkg/apiserver Kubernetes-commit: 55d45867e6a8b6336be0c56da0b4843dd552b1b0
23 lines
698 B
Go
23 lines
698 B
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package samplecontroller
|
|
|
|
// GroupName is the group name used in this package
|
|
const (
|
|
GroupName = "samplecontroller.k8s.io"
|
|
)
|