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