From aa63fb8f231051ead454fa34ccb9371fc9b064e3 Mon Sep 17 00:00:00 2001 From: qowevisa Date: Sat, 25 May 2024 09:18:49 +0300 Subject: [PATCH] Add errors to communication package --- communication/errors.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 communication/errors.go diff --git a/communication/errors.go b/communication/errors.go new file mode 100644 index 0000000..5978bb7 --- /dev/null +++ b/communication/errors.go @@ -0,0 +1,7 @@ +package communication + +import "errors" + +var ( + ERROR_LINK_ZERO_COUNT = errors.New("Link count is zero") +)