9 lines
175 B
Haskell
9 lines
175 B
Haskell
|
module StringProcessorAPI where
|
||
|
|
||
|
data Interface = Interface {
|
||
|
stringProcessor :: String -> String
|
||
|
}
|
||
|
|
||
|
plugin :: Interface
|
||
|
plugin = Interface { stringProcessor = id }
|