10 lines
147 B
Haskell
10 lines
147 B
Haskell
module API where
|
|
|
|
data Interface = Interface {
|
|
function :: forall a. a -> a
|
|
}
|
|
|
|
plugin :: Interface
|
|
plugin = Interface { function = id }
|
|
|