]> Git — Sourcephile - gargantext.git/blob - src/Gargantext/Database.hs
[TYPES] Terms and Human Lang types fusion.
[gargantext.git] / src / Gargantext / Database.hs
1 {-|
2 Module : Gargantext.Database
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 {-# LANGUAGE NoImplicitPrelude #-}
15
16 module Gargantext.Database (
17 module Gargantext.Database.Utils
18 -- , module Gargantext.Database.Instances
19 , module Gargantext.Database.User
20 , module Gargantext.Database.Node
21 , module Gargantext.Database.NodeNode
22 -- , module Gargantext.Database.Ngram
23 , module Gargantext.Database.NodeNgram
24 , module Gargantext.Database.NodeNodeNgram
25 , module Gargantext.Database.NodeNgramNgram
26 -- , module Gargantext.Database.Gargandb
27 -- , module Gargantext.Database.Simple
28 -- , module Gargantext.Database.InsertNode
29 -- , module Gargantext.Database.NodeType
30 ) where
31
32 import Gargantext.Database.Utils
33 --import Gargantext.Database.Gargandb
34 import Gargantext.Database.User
35 import Gargantext.Database.Node
36 import Gargantext.Database.NodeNode
37 --import Gargantext.Database.Ngram
38 import Gargantext.Database.NodeNgram
39 import Gargantext.Database.NodeNodeNgram
40 import Gargantext.Database.NodeNgramNgram
41 --import Gargantext.Database.Simple
42 --import Gargantext.Database.NodeType
43 --import Gargantext.Database.InsertNode
44
45