An easy-to-host PDS on the ATProtocol, MacOS. Grandma-approved.

docs: clean up some unnecessary comments

authored by malpercio.dev and committed by

Tangled d30bb782 dea05bc2

-14
-2
crates/common/src/config.rs
··· 1 - // pattern: Functional Core 2 - 3 1 use serde::Deserialize; 4 2 use std::collections::HashMap; 5 3 use std::path::PathBuf;
-2
crates/common/src/config_loader.rs
··· 1 - // pattern: Imperative Shell 2 - 3 1 use std::collections::HashMap; 4 2 use std::path::Path; 5 3
-2
crates/common/src/error.rs
··· 1 - // Shared error types and provisioning API error envelope. 2 - 3 1 use serde::Serialize; 4 2 use serde_json::Value; 5 3
-2
crates/common/src/lib.rs
··· 1 - // common: shared types, error envelope, config parsing. 2 - 3 1 mod config; 4 2 mod config_loader; 5 3 mod error;
-4
crates/relay/src/app.rs
··· 1 - // pattern: Functional Core (router construction is I/O-free) 2 - 3 1 use std::sync::Arc; 4 2 5 3 use axum::{extract::Path, routing::get, Router}; ··· 7 5 use tower_http::{cors::CorsLayer, trace::TraceLayer}; 8 6 9 7 /// Shared application state cloned into every request handler via Axum's `State` extractor. 10 - /// 11 - /// Fields will grow as waves are implemented (MM-72 adds the DB pool, etc.). 12 8 #[derive(Clone)] 13 9 pub struct AppState { 14 10 // Read by handlers once XRPC endpoints are implemented; suppressed until then.
-2
crates/relay/src/main.rs
··· 1 - // pattern: Imperative Shell 2 - 3 1 use anyhow::Context; 4 2 use clap::Parser; 5 3 use std::{path::PathBuf, sync::Arc};