├── .dockerignore ├── .gitignore ├── .travis.yml ├── .vscode └── tasks.json ├── CHANGES.md ├── Dockerfile.test ├── LICENSE.md ├── README.md ├── doc └── doc.odocl ├── docker-compose.yml ├── dune-project ├── ezpostgresql.opam ├── jbuild-workspace.dev ├── lib ├── dune ├── ezpostgresql.ml └── ezpostgresql.mli ├── pkg └── pkg.ml └── test ├── dune └── test.ml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .merlin 2 | _build 3 | _opam 4 | *.install 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/Dockerfile.test -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/README.md -------------------------------------------------------------------------------- /doc/doc.odocl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/dune-project -------------------------------------------------------------------------------- /ezpostgresql.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/ezpostgresql.opam -------------------------------------------------------------------------------- /jbuild-workspace.dev: -------------------------------------------------------------------------------- 1 | (context ((switch 4.04.2))) 2 | -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/lib/dune -------------------------------------------------------------------------------- /lib/ezpostgresql.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/lib/ezpostgresql.ml -------------------------------------------------------------------------------- /lib/ezpostgresql.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/lib/ezpostgresql.mli -------------------------------------------------------------------------------- /pkg/pkg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/pkg/pkg.ml -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/test/dune -------------------------------------------------------------------------------- /test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbypriam/ezpostgresql/HEAD/test/test.ml --------------------------------------------------------------------------------