10 lines
271 B
Go
10 lines
271 B
Go
|
package subject
|
||
|
|
||
|
const communicationPrefix = "communication_"
|
||
|
|
||
|
const (
|
||
|
CommunicationRequestHTTP = communicationPrefix + "request_http"
|
||
|
CommunicationResponseHTTP = communicationPrefix + "response_http"
|
||
|
CommunicationWebhookTNC = communicationPrefix + "webhook_tnc"
|
||
|
)
|