Some checks failed
CI / Check / Test (push) Has been cancelled
handlers/api.rs (1706 LOC) + html.rs (1735 LOC) → 12 domain files: auth, diary, movies, users, search, watchlist, goals, social, integrations, helpers + existing import/webhook/wrapup/images/rss. domain/testing.rs (1309 LOC) → testing/ module: in_memory, fakes, noops, panics, wrapup. Update README + architecture.mmd with goals feature.
20 lines
338 B
Rust
20 lines
338 B
Rust
pub mod auth;
|
|
pub mod diary;
|
|
pub mod goals;
|
|
mod helpers;
|
|
pub mod images;
|
|
pub mod import;
|
|
pub mod integrations;
|
|
pub mod movies;
|
|
pub mod rss;
|
|
pub mod search;
|
|
#[cfg(feature = "federation")]
|
|
pub mod social;
|
|
pub mod users;
|
|
pub mod watchlist;
|
|
pub mod webhook;
|
|
pub mod wrapup;
|
|
|
|
const DEFAULT_PAGE_LIMIT: u32 = 5;
|
|
const RSS_FEED_LIMIT: u32 = 50;
|