king: make everything use Urbit.Prelude rather than ClassyPrelude

This commit is contained in:
pilfer-pandex 2021-04-27 18:08:13 -04:00
parent bc45a6d32f
commit f8d341b3b0
4 changed files with 4 additions and 8 deletions

View File

@ -6,12 +6,10 @@
-} -}
module Urbit.King.CLI where module Urbit.King.CLI where
import ClassyPrelude hiding (log) import Urbit.Prelude hiding (log, Parser)
import Options.Applicative import Options.Applicative
import Options.Applicative.Help.Pretty import Options.Applicative.Help.Pretty
import Data.Word (Word16)
import RIO (LogLevel(..))
import System.Environment (getProgName) import System.Environment (getProgName)
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -3,9 +3,8 @@
-} -}
module Urbit.King.TryJamPill where module Urbit.King.TryJamPill where
import ClassyPrelude
import Control.Lens import Control.Lens
import Urbit.Noun import Urbit.Prelude
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -4,9 +4,8 @@
module Urbit.Vere.Http where module Urbit.Vere.Http where
import ClassyPrelude import Urbit.Prelude
import Urbit.Arvo import Urbit.Arvo
import Urbit.Noun
import qualified Data.CaseInsensitive as CI import qualified Data.CaseInsensitive as CI
import qualified Network.HTTP.Types as HT import qualified Network.HTTP.Types as HT

View File

@ -9,7 +9,7 @@ module Urbit.Vere.Term.Render
, soundBell , soundBell
) where ) where
import ClassyPrelude import Urbit.Prelude
import qualified System.Console.ANSI as ANSI import qualified System.Console.ANSI as ANSI