mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
a3e987b78a
* 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)
|