├── .gitignore ├── CHANGES.md ├── LICENSE.txt ├── Makefile ├── README.md ├── dune-project ├── ppx_getenv.opam ├── src ├── dune └── ppx_getenv.ml └── src_test ├── dune └── test_ppx_getenv.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.install 3 | .merlin 4 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/dune-project -------------------------------------------------------------------------------- /ppx_getenv.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/ppx_getenv.opam -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/src/dune -------------------------------------------------------------------------------- /src/ppx_getenv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/src/ppx_getenv.ml -------------------------------------------------------------------------------- /src_test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/src_test/dune -------------------------------------------------------------------------------- /src_test/test_ppx_getenv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_getenv/HEAD/src_test/test_ppx_getenv.ml --------------------------------------------------------------------------------