├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── ooh.cabal └── src ├── HasObject.hs └── Main.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /ooh.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/ooh.cabal -------------------------------------------------------------------------------- /src/HasObject.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/src/HasObject.hs -------------------------------------------------------------------------------- /src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/complyue/ooh/HEAD/src/Main.hs --------------------------------------------------------------------------------