Meliputi: - File-level //! doc comment: tujuan file, alur kerja, komponen utama - Function-level /// doc comment: apa, parameter, return, flow, edge cases - Struct/enum/trait /// doc comment: peran, field docs - Tracing logging (tracing::info!/debug!/trace!/warn!/error!) di setiap fungsi - Inline comments untuk variable dan branching logic penting - Seluruh 8 crates di workspace: zesdex-backend, zesdex-cms, zesdex-entities, zesdex-iam, zesdex-infra, zesdex-ipc, zesdex-middleware, zesdex-utils - Build: 0 errors, 242/242 tests passed
10 lines
255 B
Rust
10 lines
255 B
Rust
//! HTTP adapter layer for OAuth callback handling.
|
|
//!
|
|
//! # Sub-modules
|
|
//!
|
|
//! - [`dto`] — Request/response DTOs for the loopback endpoint
|
|
//! - [`handlers`] — HTTP handler that validates state and extracts `?code=`
|
|
|
|
pub mod dto;
|
|
pub mod handlers;
|