mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-12 12:39:47 +08:00
9 lines
116 B
Go
9 lines
116 B
Go
|
package ncutils
|
||
|
|
||
|
const (
|
||
|
// ACK - acknowledgement signal for MQ
|
||
|
ACK = 1
|
||
|
// DONE - done signal for MQ
|
||
|
DONE = 2
|
||
|
)
|