2023-01-15 16:38:57 +01:00
|
|
|
module Main (main) where
|
|
|
|
|
2023-01-15 18:26:41 +01:00
|
|
|
import ClassyPrelude
|
2023-06-20 17:54:50 +02:00
|
|
|
import GHC.IO.Encoding (setLocaleEncoding)
|
|
|
|
import GHC.IO.Encoding.UTF8 (utf8)
|
2023-01-15 18:26:41 +01:00
|
|
|
import Lib (runBothServers)
|
2023-01-15 16:38:57 +01:00
|
|
|
|
|
|
|
main :: IO ()
|
2023-06-20 17:54:50 +02:00
|
|
|
main = do
|
|
|
|
setLocaleEncoding utf8
|
|
|
|
runBothServers
|