10 lines
157 B
Haskell
10 lines
157 B
Haskell
module API where
|
|
|
|
data Interface = Interface {
|
|
transform :: String -> String
|
|
}
|
|
|
|
rsrc :: Interface
|
|
rsrc = Interface { transform = id }
|
|
|