From e9500209a89c4b9a3b1099beeafb2855f114ae6a Mon Sep 17 00:00:00 2001 From: Flavio Fois Date: Thu, 5 Feb 2026 22:53:42 +0100 Subject: [PATCH] feat: update CLAUDE.md with guidelines for backend method organization and documentation updates --- CLAUDE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index cd703b3..bd5a093 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -55,6 +55,9 @@ Email parsing lives in `backend/utils/mail/`: - `msg_reader.go` - Microsoft MSG (CFB format) parsing - `mailparser.go` - MIME multipart handling +For any major change to backend functionality, add a new method to `App` and implement it in a new `app_*.go` file for organization. +And update the DOCUMENTATION.md file in the root of the repository with a brief description of the new method and its purpose. + ### Frontend Structure (SvelteKit + Svelte 5) **Routes** (file-based routing):