mirror of
https://github.com/snoyberg/keter.git
synced 2024-12-14 08:05:40 +03:00
25f40e1e76
* Disable postgres plugin in foo1_0 example.
13 lines
265 B
Haskell
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."
|