diff options
author | dan <[email protected]> | 2021-04-17 08:41:13 +0200 |
---|---|---|
committer | dan <[email protected]> | 2021-04-17 08:41:13 +0200 |
commit | 766bc25be87ad66d9c850373e42c7d323f8d58db (patch) | |
tree | fad231549184eda76e03e40ddfab74c234db2960 /app | |
parent | a26253c1efe45459b46edd4d06a4ee03d99eb6dd (diff) | |
download | bizexp-766bc25be87ad66d9c850373e42c7d323f8d58db.tar.gz bizexp-766bc25be87ad66d9c850373e42c7d323f8d58db.tar.bz2 bizexp-766bc25be87ad66d9c850373e42c7d323f8d58db.zip |
Create RestService, with state and an eval endpoint
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 |