5 Copyright : (c) CNRS, 2017-Present
6 License : AGPL + CECILL v3
7 Maintainer : team@gargantext.org
8 Stability : experimental
11 Here is a longer description of this module, containing some
12 commentary with @some markup@.
15 {-# LANGUAGE NoImplicitPrelude #-}
17 module Ngrams.Lang where
19 import Gargantext.Prelude (IO())
21 import Gargantext.Core (Lang(..))
22 import qualified Ngrams.Lang.Fr as Fr
23 import qualified Ngrams.Lang.En as En
25 ngramsExtractionTest :: Lang -> IO ()
26 ngramsExtractionTest FR = Fr.ngramsExtractionTest
27 ngramsExtractionTest EN = En.ngramsExtractionTest