shaniqua-plugins/examples/shell/simple/StringProcessorAPI.hs
2005-04-24 08:51:33 +00:00

9 lines
175 B
Haskell

module StringProcessorAPI where
data Interface = Interface {
stringProcessor :: String -> String
}
plugin :: Interface
plugin = Interface { stringProcessor = id }