mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
9 lines
187 B
Haskell
9 lines
187 B
Haskell
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses, FlexibleInstances #-}
|
|
|
|
module Birthday where
|
|
|
|
import DS (definePgConTable)
|
|
|
|
$(definePgConTable "EXAMPLE" "birthday"
|
|
[''Eq, ''Show])
|