diff options
| author | physcik <mynameisgennadiy@vk.com> | 2026-04-21 21:31:17 +0500 |
|---|---|---|
| committer | physcik <mynameisgennadiy@vk.com> | 2026-04-21 21:31:17 +0500 |
| commit | 68f3941b17ce80f486d9dbaedbe3b4aa8746dff8 (patch) | |
| tree | 1bf705ef68dd4174c2ad35fd668c48c9d86f5b5a /backend/src/Authentication | |
| parent | d46bf56209ca250fc4108af46375359652ba7fd8 (diff) | |
token null handling
Diffstat (limited to 'backend/src/Authentication')
| -rw-r--r-- | backend/src/Authentication/Tokens.zig | 2 |
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, }; |
