10 lines
321 B
Go
10 lines
321 B
Go
|
package constant
|
||
|
|
||
|
const natsCommunicationPrefix = "communication_"
|
||
|
|
||
|
const (
|
||
|
NatsCommunicationSubjectRequestHTTP = natsCommunicationPrefix + "request_http"
|
||
|
NatsCommunicationSubjectResponseHTTP = natsCommunicationPrefix + "response_http"
|
||
|
NatsCommunicationSubjectWebhookTNC = natsCommunicationPrefix + "webhook_tnc"
|
||
|
)
|