7 lines
88 B
Haskell
7 lines
88 B
Haskell
|
module API where
|
||
|
|
||
|
type PluginAPI = Int -> String
|
||
|
action :: PluginAPI
|
||
|
action i = show i
|
||
|
|