mateamt/src/Classes/ToDatabase.hs

11 lines
171 B
Haskell
Raw Normal View History

{-# LANGUAGE TypeFamilies #-}
module Classes.ToDatabase where
2022-04-15 13:35:53 +00:00
import Data.Kind (Type)
class ToDatabase a where
2022-04-15 13:35:53 +00:00
type InTuple a :: Type
toDatabase :: a -> InTuple a