gitextract_yuzb6sdt/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ ├── dependabot.yml │ └── workflows/ │ ├── build-lint-test.yml │ ├── on-pr-master.yml │ ├── on-push-master.yml │ ├── on-release.yml │ ├── publish-alpha.yml │ ├── publish-coverage.yml │ └── publish-with-git-tag-version.yml ├── .gitignore ├── .mergify.yml ├── .prettierrc ├── .vscode/ │ └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__/ │ ├── forRoot.spec.ts │ ├── forRootAsync.spec.ts │ ├── retires.spec.ts │ ├── routing.spec.ts │ └── utils/ │ ├── platforms.ts │ └── request.ts ├── eslint.config.cjs ├── examples/ │ ├── in-memory/ │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── nest-cli.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ └── main.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ └── redis-store/ │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── nest-cli.json │ ├── package.json │ ├── src/ │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── config.module.ts │ │ ├── config.service.ts │ │ ├── main.ts │ │ ├── redis.module.ts │ │ └── session.module.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── jest.config.js ├── package.json ├── src/ │ ├── index.ts │ └── retriesMiddleware.ts ├── tsconfig.build.json └── tsconfig.json