12 lines
220 B
Haskell
12 lines
220 B
Haskell
module Main (main) where
|
|
|
|
import ClassyPrelude
|
|
import GHC.IO.Encoding (setLocaleEncoding)
|
|
import GHC.IO.Encoding.UTF8 (utf8)
|
|
import Lib (runBothServers)
|
|
|
|
main :: IO ()
|
|
main = do
|
|
setLocaleEncoding utf8
|
|
runBothServers
|