From ce415ff36315dd11792ec70f8eff40b9ed8d8089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=8D=E1=B4=8F=E1=B4=8F=C9=B4D4=CA=80=E1=B4=8B?= Date: Sun, 14 Aug 2022 23:38:50 +0800 Subject: [PATCH] fix: add errors import for darwin --- internal/decrypter/decrypter_darwin.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/decrypter/decrypter_darwin.go b/internal/decrypter/decrypter_darwin.go index 78c874d..aaafadf 100644 --- a/internal/decrypter/decrypter_darwin.go +++ b/internal/decrypter/decrypter_darwin.go @@ -1,5 +1,9 @@ package decrypter +import ( + "errors" +) + var ( errSecurityKeyIsEmpty = errors.New("input [security find-generic-password -wa 'Chrome'] in terminal") )