8 lines
214 B
Go
8 lines
214 B
Go
package crawler
|
|
|
|
// Define a custom type for our context key to avoid collisions.
|
|
type contextKey string
|
|
|
|
// DebugContextKey is the key for the debug flag in the context.
|
|
const DebugContextKey contextKey = "debug"
|