Fix utf-8
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
qvalentin 2023-06-20 17:54:50 +02:00
parent 6e43e10d1f
commit eedc21fb8e
6 changed files with 233 additions and 10 deletions

View file

@ -1,7 +1,11 @@
module Main (main) where
import ClassyPrelude
import GHC.IO.Encoding (setLocaleEncoding)
import GHC.IO.Encoding.UTF8 (utf8)
import Lib (runBothServers)
main :: IO ()
main = runBothServers
main = do
setLocaleEncoding utf8
runBothServers