-- | Description: Generate instances for tuples
--
-- Instances are generated for tuples up to size 8. If you want to
-- generate instances for larger tuples then the TH functions provided
-- below will help you accomplish that.
module Hasql.Interpolate.TH
  ( genDecodeRowInstance,
    genEncodeRowInstance,
  )
where

import Hasql.Interpolate.Internal.Decoder.TH (genDecodeRowInstance)
import Hasql.Interpolate.Internal.EncodeRow.TH (genEncodeRowInstance)