mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-15 05:05:56 +00:00
* windows-compatible getChar without buffering, option to use terminal without editing * option to choose terminal mode, conditional compilation for Windows * conditional extension * add basic terminal mode (no contact insertion) * option help
8 lines
189 B
Haskell
8 lines
189 B
Haskell
module Types where
|
|
|
|
import Data.ByteString.Char8 (ByteString)
|
|
|
|
newtype Contact = Contact {toBs :: ByteString}
|
|
|
|
data TermMode = TermModeBasic | TermModeSimple | TermModeEditor deriving (Eq)
|