├── .clj-kondo ├── .gitignore └── config.edn ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── deps.edn ├── project.clj ├── src └── eidolon │ └── core.clj └── test └── eidolon └── core_test.clj /.clj-kondo/.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ -------------------------------------------------------------------------------- /.clj-kondo/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/.clj-kondo/config.edn -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/deps.edn -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/project.clj -------------------------------------------------------------------------------- /src/eidolon/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/src/eidolon/core.clj -------------------------------------------------------------------------------- /test/eidolon/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latacora/eidolon/HEAD/test/eidolon/core_test.clj --------------------------------------------------------------------------------