Files
oslstats/pkg/contexts/keys.go
2026-01-23 19:07:05 +11:00

8 lines
112 B
Go

package contexts
type Key string
func (c Key) String() string {
return "oslstats context key " + string(c)
}