natsio/subject/order.go

16 lines
313 B
Go
Raw Normal View History

2022-08-20 14:21:51 +00:00
package subject
2022-08-26 08:56:36 +00:00
import "fmt"
2022-08-20 14:21:51 +00:00
2022-08-26 08:56:36 +00:00
func getOrderValue(val string) string {
return fmt.Sprintf("%s.%s", prefixes.Order, val)
}
var Order = struct {
2022-08-29 08:55:17 +00:00
UpdateORStatus string
CancelDelivery string
2022-08-26 08:56:36 +00:00
}{
UpdateORStatus: getOrderValue("update_outbound_request_status"),
CancelDelivery: getOrderValue("cancel_delivery"),
}