purescript-amqp/test/Main.purs

10 lines
216 B
Plaintext
Raw Normal View History

2017-10-23 16:18:42 +05:30
module Test.Main where
import Prelude
import Control.Monad.Eff (Eff)
import Control.Monad.Eff.Console (CONSOLE, log)
main :: forall e. Eff (console :: CONSOLE | e) Unit
main = do
log "You should add some tests."