diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Main.hs b/app/Main.hs index 971bed7..3bea66c 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,6 +1,6 @@ module Main where -import qualified BizExpr (eval, repl) +import qualified RestService (start) main :: IO () -main = BizExpr.repl +main = RestService.start |