fix: utoipa-scalar version, lib.rs.liquid for oidc conditional

This commit is contained in:
2026-05-18 00:44:35 +02:00
parent 5b0d5bf15d
commit e3552fd50d
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
pub mod jwt;
{% if auth_oidc %}pub mod oidc;{% endif %}
pub mod password;
pub use jwt::JwtTokenIssuer;
{% if auth_oidc %}pub use oidc::OidcAdapter;{% endif %}
pub use password::BcryptPasswordHasher;