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