keter/incoming/foo1_0/worker.hs
Christopher Reichert 25f40e1e76 Organize imports in foo1_0/hello.hs and remove unused extension.
* Disable postgres plugin in foo1_0 example.
2014-12-19 15:17:44 -06:00

13 lines
265 B
Haskell

import System.Environment
main :: IO ()
main = do
[arg] <- getArgs
env <- getEnvironment
putStrLn "Running Background App."
putStrLn $ " Args: " ++ show arg
putStrLn $ "Environment: " ++ show env
putStrLn "Stopping Background App."