├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── app └── Main.hs ├── legion.cabal ├── src ├── Lib.hs └── Server.hs ├── stack.yaml └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/app/Main.hs -------------------------------------------------------------------------------- /legion.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/legion.cabal -------------------------------------------------------------------------------- /src/Lib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/src/Lib.hs -------------------------------------------------------------------------------- /src/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/src/Server.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaviavi/legion/HEAD/test/Spec.hs --------------------------------------------------------------------------------