13 lines
167 B
Go
13 lines
167 B
Go
|
|
package taskAgent
|
||
|
|
|
||
|
|
type Task struct {
|
||
|
|
MerchUuid string
|
||
|
|
Origins map[string]string
|
||
|
|
}
|
||
|
|
|
||
|
|
type Result struct {
|
||
|
|
MerchUuid string
|
||
|
|
OriginName string
|
||
|
|
Price int32
|
||
|
|
}
|