]> Git — Sourcephile - gargantext.git/blob - src/Gargantext/Core.hs
[MERGE] Orchestrator merge.
[gargantext.git] / src / Gargantext / Core.hs
1 {-|
2 Module : Gargantext.Core
3 Description :
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
8 Portability : POSIX
9
10 Here is a longer description of this module, containing some
11 commentary with @some markup@.
12 -}
13
14 module Gargantext.Core
15 where
16
17 ------------------------------------------------------------------------
18 -- | Language of a Text
19 -- For simplicity, we suppose text has an homogenous language
20 data Lang = EN | FR
21
22 -- | DE | IT | SP
23 -- > EN == english
24 -- > FR == french
25 -- > DE == deutch (not implemented yet)
26 -- > IT == italian (not implemented yet)
27 -- > SP == spanish (not implemented yet)
28 -- > ... add your language and help us to implement it (:
29