Add errors to communication package

This commit is contained in:
qowevisa 2024-05-25 09:18:49 +03:00
parent 716be466e0
commit aa63fb8f23

7
communication/errors.go Normal file
View File

@ -0,0 +1,7 @@
package communication
import "errors"
var (
ERROR_LINK_ZERO_COUNT = errors.New("Link count is zero")
)