github.com/songzhibin97/gkit@v1.2.13/distributed/task/args.go (about)

     1  package task
     2  
     3  // Arg task中的参数
     4  type Arg struct {
     5  	Type  string      `json:"type" bson:"type"`
     6  	Key   string      `json:"key" bson:"key"`
     7  	Value interface{} `json:"value" bson:"value"`
     8  }