mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 10:03:22 +03:00
491f7f7508
Updates ormolu to 0.5.3.0 and formats the project
16 lines
604 B
Haskell
16 lines
604 B
Haskell
module Commands.Dev.Internal where
|
|
|
|
import Commands.Base
|
|
import Commands.Dev.Internal.Arity qualified as Arity
|
|
import Commands.Dev.Internal.Options
|
|
import Commands.Dev.Internal.Pretty qualified as Pretty
|
|
import Commands.Dev.Internal.Reachability qualified as Reachability
|
|
import Commands.Dev.Internal.Typecheck qualified as Typecheck
|
|
|
|
runCommand :: (Members '[Embed IO, App] r) => InternalCommand -> Sem r ()
|
|
runCommand = \case
|
|
Pretty opts -> Pretty.runCommand opts
|
|
Arity opts -> Arity.runCommand opts
|
|
TypeCheck opts -> Typecheck.runCommand opts
|
|
Reachability opts -> Reachability.runCommand opts
|