Remove useless imports.

master
Philippe Pittoli 2024-01-20 02:00:10 +01:00
parent 6a78e863c1
commit 36f3831827
1 changed files with 2 additions and 7 deletions

View File

@ -1,18 +1,13 @@
-- | `GenericParser.DomainParser.Common` regroups all functions and types that are common between the different domain parsers.
module GenericParser.DomainParser.Common where
import Prelude
import Control.Alt ((<|>))
import Control.Lazy (defer)
import Data.Array as A
import Data.Either (Either(..))
import Data.Maybe (Maybe(..), maybe)
import Data.Maybe (Maybe(..))
import Data.String as S
import Data.String.CodeUnits as CU
import GenericParser.Parser (Parser(..)
, success, failureError
, alphanum, char, many1, string )
, alphanum, char, many1)
type Size = Int
-- | `DomainError` expresses all possible errors that can occur while parsing a domain.