feat(adapters): sqlite, postgres, JWT+bcrypt auth adapters

This commit is contained in:
2026-05-18 00:03:08 +02:00
parent 531b8f6eae
commit 4cab050ee8
16 changed files with 623 additions and 1789 deletions

View File

@@ -0,0 +1,7 @@
pub mod jwt;
pub mod oidc;
pub mod password;
pub use jwt::JwtTokenIssuer;
pub use oidc::OidcAdapter;
pub use password::BcryptPasswordHasher;