blob: c0ec448882bb4132a8f584c51d4ba221e9f6a51a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module Language.SimpleShell.Parser.Common.Root
( RootParser
)
where
import Data.Void (Void)
import Data.Text (Text)
import Text.Megaparsec (Parsec)
type RootParser = Parsec Void Text
|