natsio/subject/communication.go

11 lines
364 B
Go
Raw Normal View History

2022-08-18 10:47:47 +00:00
package subject
const communicationPrefix = "communication_"
const (
2022-08-22 08:51:14 +00:00
CommunicationRequestHTTP = communicationPrefix + "request_http"
CommunicationResponseHTTP = communicationPrefix + "response_http"
CommunicationWebhookTNC = communicationPrefix + "webhook_tnc"
CommunicationWebhookGlobalCare = communicationPrefix + "webhook_global_care"
2022-08-18 10:47:47 +00:00
)