15 lines
286 B
Go
15 lines
286 B
Go
|
/*
|
||
|
Copyright (c) 2013, Matt T. Proud
|
||
|
All rights reserved.
|
||
|
|
||
|
Use of this source code is governed by a BSD-style license that can be found in
|
||
|
the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
package registry
|
||
|
|
||
|
var (
|
||
|
// NilLabels is a nil set of labels merely for end-user convenience.
|
||
|
NilLabels map[string]string
|
||
|
)
|