hasklepias-0.12.0: src/Hasklepias.hs
{-|
Module : Hasklepias
Description : Everything you should need to get up and running with
hasklepias.
Copyright : (c) NoviSci, Inc 2020
License : BSD3
Maintainer : bsaul@novisci.com
See the examples folder and manual for further documentation.
-}
module Hasklepias (
module EventData
-- ** Event Contexts
, module EventData.Context
-- ** Event Domains
, module EventData.Context.Domain
-- ** Parsing Events
, module EventData.Aeson
-- ** Generating arbitrary events
, module EventData.Arbitrary
, module FeatureCompose
-- ** Writing Features to JSON
, module FeatureCompose.Aeson
-- * Utilities for defining Features from Events
{- |
Much of logic needed to define features from events depends on the
[interval-algebra](https://hackage.haskell.org/package/interval-algebra) library.
Its main functions and types are re-exported in Hasklepias, but the documentation
can be found on [hackage](https://hackage.haskell.org/package/interval-algebra).
-}
, module FeatureEvents
-- * Specifying and building cohorts
, module Hasklepias.Cohort
-- ** Writing Cohorts to JSON
, module Hasklepias.Aeson
-- ** Creating an executable cohort application
, module Hasklepias.MakeApp
-- * Rexported Functions and modules
, module Hasklepias.Reexports
, module Hasklepias.ReexportsUnsafe
) where
import EventData
import EventData.Aeson
import EventData.Arbitrary
import EventData.Context
import EventData.Context.Domain
import IntervalAlgebra
import IntervalAlgebra.IntervalUtilities
import IntervalAlgebra.PairedInterval
import FeatureCompose
import FeatureCompose.Aeson
import FeatureEvents
import Hasklepias.Reexports
import Hasklepias.ReexportsUnsafe
import Hasklepias.Cohort
import Hasklepias.Cohort.Criteria
import Hasklepias.Aeson
import Hasklepias.MakeApp