├── .gitignore ├── HttpRedirect.hs ├── README.md ├── appveyor.yml ├── config.yaml └── http-redirect.cabal /.gitignore: -------------------------------------------------------------------------------- 1 | mirror/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /HttpRedirect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndmitchell/offline-stack/HEAD/HttpRedirect.hs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndmitchell/offline-stack/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndmitchell/offline-stack/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndmitchell/offline-stack/HEAD/config.yaml -------------------------------------------------------------------------------- /http-redirect.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndmitchell/offline-stack/HEAD/http-redirect.cabal --------------------------------------------------------------------------------