// src/server/features/notes/db/notes.repository.ts
// Repository for notes database operations with layout support
// This file re-exports all functions from the decomposed repository modules

// Re-export all functions from the decomposed repository modules
export {
  // Query functions
  findWithLayout,
  findOneWithLayout,
  // Command functions
  findById,
  hardDeleteNote,
  // Layout functions
  findLayout,
  updateNoteLayout,
  markNoteAsViewed,
  hardDeleteNoteLayouts,
  // History functions
  findComments,
  findCommentById,
  findHistory,
  createHistoryEntry,
} from './repository';
