From bf96ca12633074a54cbbeb4edc1cd78451278b2e Mon Sep 17 00:00:00 2001 From: Alexey Date: Sat, 3 Jan 2026 15:41:39 +0200 Subject: [PATCH] errors file --- api/auth/errors.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 api/auth/errors.go diff --git a/api/auth/errors.go b/api/auth/errors.go new file mode 100644 index 0000000..0f9aa06 --- /dev/null +++ b/api/auth/errors.go @@ -0,0 +1,7 @@ +package api_auth + +const ( + ErrorInvalidCredentials = "INVALID_CREDENTIALS" + ErrorInvalidToken = "INVALID_TOKEN" + ErrorExpiredToken = "EXPIRED_TOKEN" +)