File: Session.hs

package info (click to toggle)
debug-me 1.20220324-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 712 kB
  • sloc: haskell: 3,151; sh: 115; makefile: 80
file content (24 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{- Copyright 2017 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU AGPL version 3 or higher.
 -}

{-# 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
import Prelude

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