mirror of
https://github.com/scarf-sh/tie.git
synced 2024-11-22 18:42:05 +03:00
10 lines
159 B
Haskell
10 lines
159 B
Haskell
|
module Tie.Template.Response_
|
||
|
( ToResponse (..),
|
||
|
)
|
||
|
where
|
||
|
|
||
|
import qualified Network.Wai
|
||
|
|
||
|
class ToResponse a where
|
||
|
toResponse :: a -> Network.Wai.Response
|