gonito/fay-shared/SharedTypes.hs

12 lines
218 B
Haskell
Raw Normal View History

2015-08-20 22:33:38 +02:00
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE DeriveDataTypeable #-}
module SharedTypes where
import Prelude
import Data.Data
import Fay.Yesod
data Command = GetFib Int (Returns Int)
deriving (Typeable, Data)