9 lines
135 B
Haskell
9 lines
135 B
Haskell
|
module API where
|
||
|
|
||
|
data Interface = Interface {
|
||
|
field :: String
|
||
|
}
|
||
|
|
||
|
plugin :: Interface
|
||
|
plugin = Interface { field = undefined }
|