mirror of
https://github.com/oarkflow/mq.git
synced 2025-09-27 04:15:52 +08:00
11 lines
208 B
Go
11 lines
208 B
Go
// context_keys.go
|
|
package dag
|
|
|
|
type contextKey string
|
|
|
|
const (
|
|
contextKeyTaskID contextKey = "task_id"
|
|
contextKeyMethod contextKey = "method"
|
|
contextKeyInitialNode contextKey = "initial_node"
|
|
)
|