├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bootstrap ├── deps.edn ├── examples ├── Makefile ├── README.md └── handler.clj ├── src └── lambda │ ├── core.clj │ └── impl │ └── runtime.clj └── template.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -euo pipefail 4 | 5 | export BABASHKA_DISABLE_PIPE_SIGNAL_HANDLER="true" 6 | babashka 7 | -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/deps.edn -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/handler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/examples/handler.clj -------------------------------------------------------------------------------- /src/lambda/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/src/lambda/core.clj -------------------------------------------------------------------------------- /src/lambda/impl/runtime.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/src/lambda/impl/runtime.clj -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dainiusjocas/babashka-lambda-layer/HEAD/template.yaml --------------------------------------------------------------------------------