rel8-1.0.0.0: src/Rel8/Query.hs-boot
{-# language StandaloneKindSignatures #-}
module Rel8.Query
( Query( Query )
)
where
-- base
import Data.Kind ( Type )
import Prelude ()
-- opaleye
import qualified Opaleye.Select as Opaleye
type Query :: Type -> Type
newtype Query a = Query (Opaleye.Select a)