FrontEnd.hs 774 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
{-|
Module      : Gargantext.API.FrontEnd
Description : Server FrontEnd API
Copyright   : (c) CNRS, 2017-Present
License     : AGPL + CECILL v3
Maintainer  : team@gargantext.org
Stability   : experimental
Portability : POSIX

10
Loads all static file for the front-end.
11

12
-}
13 14 15 16

{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE DataKinds         #-}
{-# LANGUAGE TemplateHaskell   #-}
17 18

---------------------------------------------------------------------
19
module Gargantext.API.FrontEnd where
20 21 22 23

import           Servant.Static.TH (createApiAndServerDecs)

---------------------------------------------------------------------
24
$(createApiAndServerDecs "FrontEndAPI" "frontEndServer" "purescript-gargantext/dist")
25 26
---------------------------------------------------------------------