mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
13 lines
243 B
Haskell
13 lines
243 B
Haskell
module Commands.Extra where
|
|
|
|
import MiniJuvix.Prelude hiding (Doc)
|
|
import Options.Applicative
|
|
|
|
parseInputFile :: Parser FilePath
|
|
parseInputFile =
|
|
argument
|
|
str
|
|
( metavar "MINIJUVIX_FILE"
|
|
<> help "Path to a .mjuvix file"
|
|
)
|