Versions in this module Expand all Collapse all v0 v0.5.0 Mar 14, 2026 Changes in this version + type Document struct + FileName string + ID int + Name string + type Store struct + func NewDocumentRepo(db *sqlx.DB) *Store + func (s *Store) AddDocument(ctx context.Context, documentParam Document) (Document, error) + func (s *Store) DeleteDocument(ctx context.Context, documentParam Document) error + func (s *Store) GetDocument(ctx context.Context, documentParam Document) (Document, error) + func (s *Store) GetDocuments(ctx context.Context) ([]Document, error)