├── .githooks └── pre-commit ├── .gitignore ├── LICENSE └── README.md /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesstechnology/postgres-es/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesstechnology/postgres-es/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverlesstechnology/postgres-es/HEAD/README.md --------------------------------------------------------------------------------