├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── docs └── Intro.md ├── hotep.cabal ├── src ├── Hotep.hs └── Hotep │ └── Internal │ ├── Config.hs │ └── Types.hs ├── stack.yaml └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /docs/Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/docs/Intro.md -------------------------------------------------------------------------------- /hotep.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/hotep.cabal -------------------------------------------------------------------------------- /src/Hotep.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/src/Hotep.hs -------------------------------------------------------------------------------- /src/Hotep/Internal/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/src/Hotep/Internal/Config.hs -------------------------------------------------------------------------------- /src/Hotep/Internal/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/src/Hotep/Internal/Types.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tel/hotep/HEAD/test/Spec.hs --------------------------------------------------------------------------------