summaryrefslogtreecommitdiffhomepage
path: root/Session.hs
blob: a09a7629712e4ef7471a4c381b227a154512ef25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{-# LANGUAGE OverloadedStrings, RankNTypes, FlexibleContexts #-}

module Session where

import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as B8
import System.Exit
import Data.Monoid

startSession :: B.ByteString
startSession = "** debug-me session started"

endSession :: ExitCode -> B.ByteString
endSession ec = "** debug-me session ended (" <> B8.pack (show n) <> ")"
  where
	n = case ec of
		ExitSuccess -> 0
		ExitFailure c -> c