├── .ghci ├── .gitignore ├── .travis.yml ├── .vim.custom ├── LICENSE ├── README.md ├── Setup.hs ├── example.hs ├── reflex-host.cabal ├── src └── Reflex │ └── Host │ ├── App.hs │ └── App │ └── Internal.hs ├── stack.yaml └── travis ├── install.sh ├── script.sh └── setup.sh /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/.ghci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vim.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/.vim.custom -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/Setup.hs -------------------------------------------------------------------------------- /example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/example.hs -------------------------------------------------------------------------------- /reflex-host.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/reflex-host.cabal -------------------------------------------------------------------------------- /src/Reflex/Host/App.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/src/Reflex/Host/App.hs -------------------------------------------------------------------------------- /src/Reflex/Host/App/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/src/Reflex/Host/App/Internal.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/stack.yaml -------------------------------------------------------------------------------- /travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/travis/install.sh -------------------------------------------------------------------------------- /travis/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/travis/script.sh -------------------------------------------------------------------------------- /travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennofs/reflex-host/HEAD/travis/setup.sh --------------------------------------------------------------------------------