summaryrefslogtreecommitdiff
path: root/backend/src/Authentication
diff options
context:
space:
mode:
authorphyscik <mynameisgennadiy@vk.com>2026-04-21 21:31:17 +0500
committerphyscik <mynameisgennadiy@vk.com>2026-04-21 21:31:17 +0500
commit68f3941b17ce80f486d9dbaedbe3b4aa8746dff8 (patch)
tree1bf705ef68dd4174c2ad35fd668c48c9d86f5b5a /backend/src/Authentication
parentd46bf56209ca250fc4108af46375359652ba7fd8 (diff)
token null handling
Diffstat (limited to 'backend/src/Authentication')
-rw-r--r--backend/src/Authentication/Tokens.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/Authentication/Tokens.zig b/backend/src/Authentication/Tokens.zig
index a20c200..c713635 100644
--- a/backend/src/Authentication/Tokens.zig
+++ b/backend/src/Authentication/Tokens.zig
@@ -8,7 +8,7 @@ const token_ttl: u16 = 43_200; // 12 hours
var prng: std.Random.DefaultPrng= undefined;
var rnd: std.Random = undefined;
-const errors = error {
+pub const errors = error {
NotFound,
};