// Phase-5 stub. Replaced by real implementation in Phase 7. // // Mount is a no-op so the /api/v1 group registers no ingest routes yet; // Server.Init still wires it in so the full router topology compiles. package ingest import ( "context" "github.com/go-chi/chi/v5" ) // Handler is a no-op steward service. Phase 7 supplies the real ingest // pipeline (NDJSON streaming, validation, chunked commit). type Handler struct{} // Init satisfies the steward Service contract. func (h *Handler) Init(_ context.Context) error { return nil } // Mount registers no routes. Phase 7 replaces this with the ingest endpoints // rooted at the /api/v1 group passed in by Server.Init. func (h *Handler) Mount(_ chi.Router) {}