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