8 lines
112 B
Go
8 lines
112 B
Go
package contexts
|
|
|
|
type Key string
|
|
|
|
func (c Key) String() string {
|
|
return "oslstats context key " + string(c)
|
|
}
|