- error.rs: AuthError with proper HTTP status mapping - service/password.rs: Argon2 hash/verify with tests - service/token_service.rs: JWT sign/validate, token DB storage with SHA-256 hash - service/auth_service.rs: login/refresh/logout flows with event publishing - service/user_service.rs: user CRUD with soft delete and tenant isolation - Added sha2 dependency to workspace for token hashing
5 lines
61 B
Rust
5 lines
61 B
Rust
pub mod dto;
|
|
pub mod entity;
|
|
pub mod error;
|
|
pub mod service;
|