mirror of
https://github.com/anoma/juvix.git
synced 2024-12-28 10:04:49 +03:00
1d7bf1f25b
- Fixes #3161 The strongly connected components given in [this function](https://hackage.haskell.org/package/containers-0.7/docs/Data-Graph.html#v:stronglyConnComp) are not guaranteed to give a cycle in the order they are given. I've fixed that
14 lines
344 B
Haskell
14 lines
344 B
Haskell
module Commands.Dev.Anoma
|
|
( module Commands.Dev.Anoma,
|
|
module Commands.Dev.Anoma.Options,
|
|
)
|
|
where
|
|
|
|
import Commands.Base
|
|
import Commands.Dev.Anoma.Node qualified as Node
|
|
import Commands.Dev.Anoma.Options
|
|
|
|
runCommand :: (Members AppEffects r) => AnomaCommand -> Sem r ()
|
|
runCommand = \case
|
|
AnomaCommandNode opts -> Node.runCommand opts
|