aws-lambda-haskell-runtime-1.0.3: app/Main.hs
module Main where
import Relude
import Aws.Lambda.Runtime
main :: IO ()
main = forever $ do
res <- runExceptT lambdaRunner
case res of
Right _ -> return ()
Left err -> putTextLn $ show err