10 lines
157 B
Haskell
Raw Normal View History

2005-04-24 08:51:33 +00:00
module API where
data Interface = Interface {
transform :: String -> String
}
rsrc :: Interface
rsrc = Interface { transform = id }