├── .gitignore ├── LICENSE ├── Main.hs ├── README.md ├── Setup.hs └── ipfs.cabal /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleichner/haskell-ipfs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleichner/haskell-ipfs/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleichner/haskell-ipfs/HEAD/Main.hs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleichner/haskell-ipfs/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /ipfs.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleichner/haskell-ipfs/HEAD/ipfs.cabal --------------------------------------------------------------------------------