18 lines
371 B
Go
18 lines
371 B
Go
package subject
|
|
|
|
import "fmt"
|
|
|
|
func getOrderValue(val string) string {
|
|
return fmt.Sprintf("%s.%s", prefixes.Order, val)
|
|
}
|
|
|
|
var Order = struct {
|
|
UpdateORStatus string
|
|
CancelDelivery string
|
|
WebhookTNC string
|
|
WebhookGlobalCare string
|
|
}{
|
|
UpdateORStatus: getOrderValue("update_outbound_request_status"),
|
|
CancelDelivery: getOrderValue("cancel_delivery"),
|
|
}
|