mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
10 lines
282 B
Haskell
10 lines
282 B
Haskell
module Commands.Dev.Runtime where
|
|
|
|
import Commands.Base
|
|
import Commands.Dev.Runtime.Compile as Compile
|
|
import Commands.Dev.Runtime.Options
|
|
|
|
runCommand :: forall r. Members '[Embed IO, App] r => RuntimeCommand -> Sem r ()
|
|
runCommand = \case
|
|
Compile opts -> Compile.runCommand opts
|