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