9 lines
195 B
Haskell
9 lines
195 B
Haskell
module HTTPure.RouteSpec where
|
|
|
|
import Prelude (Unit, pure, unit)
|
|
import Test.Spec (Spec)
|
|
import Test.Spec.Runner (RunnerEffects)
|
|
|
|
routeSpec :: Spec (RunnerEffects ()) Unit
|
|
routeSpec = pure unit
|