├── .DS_Store ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README.zh-CN.md ├── cz-config.js ├── logs ├── .DS_Store ├── http-audit.log ├── http.2024-05-06.log ├── mysql-audit.log └── mysql.2024-05-06.log ├── nest-cli.json ├── nest-service.init.sql ├── nest-service.sql ├── package.json ├── pnpm-lock.yaml ├── src ├── .DS_Store ├── app.module.ts ├── configs │ ├── app.ts │ ├── database.ts │ ├── index.ts │ └── storage.ts ├── constants │ ├── common.constant.ts │ ├── error-code.constant.ts │ ├── http.constant.ts │ └── reflector.constant.ts ├── decorators │ ├── public.decorator.ts │ └── user.decorator.ts ├── dtos │ └── pagination.dto.ts ├── entities │ ├── access-category.entity.ts │ ├── access.entity.ts │ ├── index.ts │ ├── lib │ │ └── time-entity-base.ts │ ├── role-access.entity.ts │ ├── role.entity.ts │ ├── user-role.entity.ts │ └── user.entity.ts ├── exceptions │ ├── custom.exception.ts │ └── fail.exception.ts ├── filters │ └── exception.filter.ts ├── guards │ └── auth.guard.ts ├── helpers │ ├── .DS_Store │ ├── guard.helper.ts │ ├── reflector-validate.helper.ts │ ├── reflector.helper.ts │ ├── response.helper.ts │ ├── utils.helper.ts │ └── validate.helper.ts ├── interceptors │ └── transform.interceptor.ts ├── interfaces │ ├── http.interface.ts │ └── pagination.interface.ts ├── main.ts ├── middlewares │ ├── request-log.middleware.ts │ └── requestId.middleware.ts ├── routers │ ├── .DS_Store │ ├── manage │ │ ├── .DS_Store │ │ ├── access-manage │ │ │ ├── access-manage.constant.ts │ │ │ ├── access-manage.controller.ts │ │ │ ├── access-manage.dto.ts │ │ │ ├── access-manage.interface.ts │ │ │ ├── access-manage.module.ts │ │ │ └── access-manage.service.ts │ │ ├── manage.module.ts │ │ ├── role-manage │ │ │ ├── role-manage.constant.ts │ │ │ ├── role-manage.controller.ts │ │ │ ├── role-manage.dto.ts │ │ │ ├── role-manage.interface.ts │ │ │ ├── role-manage.module.ts │ │ │ └── role-manage.service.ts │ │ └── user-manage │ │ │ ├── user-manage.controller.ts │ │ │ ├── user-manage.dto.ts │ │ │ ├── user-manage.interface.ts │ │ │ ├── user-manage.module.ts │ │ │ └── user-manage.service.ts │ ├── routers.module.ts │ └── user │ │ ├── .DS_Store │ │ ├── user.constant.ts │ │ ├── user.controller.ts │ │ ├── user.dto.ts │ │ ├── user.helper.ts │ │ ├── user.interface.ts │ │ ├── user.module.ts │ │ ├── user.param.ts │ │ └── user.service.ts └── shared │ ├── .DS_Store │ ├── auth │ ├── auth.interface.ts │ ├── auth.module.ts │ ├── auth.service.ts │ ├── index.ts │ └── jwt.strategy.ts │ ├── log │ ├── index.ts │ ├── log-file.service.ts │ ├── log.constant.ts │ ├── log.helper.ts │ ├── log.interface.ts │ ├── log.module.ts │ └── log.service.ts │ ├── mysql │ ├── mysql-file-log.service.ts │ ├── mysql.constant.ts │ ├── mysql.module.ts │ ├── mysql.provider.ts │ └── snake-naming.strategy.ts │ ├── redis │ ├── index.ts │ ├── redis.constant.ts │ ├── redis.module.ts │ ├── redis.provider.ts │ └── redis.service.ts │ ├── shared.module.ts │ └── storage │ ├── index.ts │ └── storage.module.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/cz-config.js -------------------------------------------------------------------------------- /logs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/logs/.DS_Store -------------------------------------------------------------------------------- /logs/http-audit.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/logs/http-audit.log -------------------------------------------------------------------------------- /logs/http.2024-05-06.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/mysql-audit.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/logs/mysql-audit.log -------------------------------------------------------------------------------- /logs/mysql.2024-05-06.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/nest-cli.json -------------------------------------------------------------------------------- /nest-service.init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/nest-service.init.sql -------------------------------------------------------------------------------- /nest-service.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/nest-service.sql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/configs/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/configs/app.ts -------------------------------------------------------------------------------- /src/configs/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/configs/database.ts -------------------------------------------------------------------------------- /src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/configs/index.ts -------------------------------------------------------------------------------- /src/configs/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/configs/storage.ts -------------------------------------------------------------------------------- /src/constants/common.constant.ts: -------------------------------------------------------------------------------- 1 | // 邮件验证码的有效时间为5分钟 2 | export const EMAIL_VALIDITY_PERIOD = 5 * 60; 3 | -------------------------------------------------------------------------------- /src/constants/error-code.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/constants/error-code.constant.ts -------------------------------------------------------------------------------- /src/constants/http.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/constants/http.constant.ts -------------------------------------------------------------------------------- /src/constants/reflector.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/constants/reflector.constant.ts -------------------------------------------------------------------------------- /src/decorators/public.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/decorators/public.decorator.ts -------------------------------------------------------------------------------- /src/decorators/user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/decorators/user.decorator.ts -------------------------------------------------------------------------------- /src/dtos/pagination.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/dtos/pagination.dto.ts -------------------------------------------------------------------------------- /src/entities/access-category.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/access-category.entity.ts -------------------------------------------------------------------------------- /src/entities/access.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/access.entity.ts -------------------------------------------------------------------------------- /src/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/index.ts -------------------------------------------------------------------------------- /src/entities/lib/time-entity-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/lib/time-entity-base.ts -------------------------------------------------------------------------------- /src/entities/role-access.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/role-access.entity.ts -------------------------------------------------------------------------------- /src/entities/role.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/role.entity.ts -------------------------------------------------------------------------------- /src/entities/user-role.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/user-role.entity.ts -------------------------------------------------------------------------------- /src/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/entities/user.entity.ts -------------------------------------------------------------------------------- /src/exceptions/custom.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/exceptions/custom.exception.ts -------------------------------------------------------------------------------- /src/exceptions/fail.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/exceptions/fail.exception.ts -------------------------------------------------------------------------------- /src/filters/exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/filters/exception.filter.ts -------------------------------------------------------------------------------- /src/guards/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/guards/auth.guard.ts -------------------------------------------------------------------------------- /src/helpers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/.DS_Store -------------------------------------------------------------------------------- /src/helpers/guard.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/guard.helper.ts -------------------------------------------------------------------------------- /src/helpers/reflector-validate.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/reflector-validate.helper.ts -------------------------------------------------------------------------------- /src/helpers/reflector.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/reflector.helper.ts -------------------------------------------------------------------------------- /src/helpers/response.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/response.helper.ts -------------------------------------------------------------------------------- /src/helpers/utils.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/utils.helper.ts -------------------------------------------------------------------------------- /src/helpers/validate.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/helpers/validate.helper.ts -------------------------------------------------------------------------------- /src/interceptors/transform.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/interceptors/transform.interceptor.ts -------------------------------------------------------------------------------- /src/interfaces/http.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/interfaces/http.interface.ts -------------------------------------------------------------------------------- /src/interfaces/pagination.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/interfaces/pagination.interface.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/middlewares/request-log.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/middlewares/request-log.middleware.ts -------------------------------------------------------------------------------- /src/middlewares/requestId.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/middlewares/requestId.middleware.ts -------------------------------------------------------------------------------- /src/routers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/.DS_Store -------------------------------------------------------------------------------- /src/routers/manage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/.DS_Store -------------------------------------------------------------------------------- /src/routers/manage/access-manage/access-manage.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/access-manage/access-manage.constant.ts -------------------------------------------------------------------------------- /src/routers/manage/access-manage/access-manage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/access-manage/access-manage.controller.ts -------------------------------------------------------------------------------- /src/routers/manage/access-manage/access-manage.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/access-manage/access-manage.dto.ts -------------------------------------------------------------------------------- /src/routers/manage/access-manage/access-manage.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/access-manage/access-manage.interface.ts -------------------------------------------------------------------------------- /src/routers/manage/access-manage/access-manage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/access-manage/access-manage.module.ts -------------------------------------------------------------------------------- /src/routers/manage/access-manage/access-manage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/access-manage/access-manage.service.ts -------------------------------------------------------------------------------- /src/routers/manage/manage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/manage.module.ts -------------------------------------------------------------------------------- /src/routers/manage/role-manage/role-manage.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/role-manage/role-manage.constant.ts -------------------------------------------------------------------------------- /src/routers/manage/role-manage/role-manage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/role-manage/role-manage.controller.ts -------------------------------------------------------------------------------- /src/routers/manage/role-manage/role-manage.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/role-manage/role-manage.dto.ts -------------------------------------------------------------------------------- /src/routers/manage/role-manage/role-manage.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/role-manage/role-manage.interface.ts -------------------------------------------------------------------------------- /src/routers/manage/role-manage/role-manage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/role-manage/role-manage.module.ts -------------------------------------------------------------------------------- /src/routers/manage/role-manage/role-manage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/role-manage/role-manage.service.ts -------------------------------------------------------------------------------- /src/routers/manage/user-manage/user-manage.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/user-manage/user-manage.controller.ts -------------------------------------------------------------------------------- /src/routers/manage/user-manage/user-manage.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/user-manage/user-manage.dto.ts -------------------------------------------------------------------------------- /src/routers/manage/user-manage/user-manage.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/user-manage/user-manage.interface.ts -------------------------------------------------------------------------------- /src/routers/manage/user-manage/user-manage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/user-manage/user-manage.module.ts -------------------------------------------------------------------------------- /src/routers/manage/user-manage/user-manage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/manage/user-manage/user-manage.service.ts -------------------------------------------------------------------------------- /src/routers/routers.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/routers.module.ts -------------------------------------------------------------------------------- /src/routers/user/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/.DS_Store -------------------------------------------------------------------------------- /src/routers/user/user.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.constant.ts -------------------------------------------------------------------------------- /src/routers/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.controller.ts -------------------------------------------------------------------------------- /src/routers/user/user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.dto.ts -------------------------------------------------------------------------------- /src/routers/user/user.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.helper.ts -------------------------------------------------------------------------------- /src/routers/user/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.interface.ts -------------------------------------------------------------------------------- /src/routers/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.module.ts -------------------------------------------------------------------------------- /src/routers/user/user.param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.param.ts -------------------------------------------------------------------------------- /src/routers/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/routers/user/user.service.ts -------------------------------------------------------------------------------- /src/shared/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/.DS_Store -------------------------------------------------------------------------------- /src/shared/auth/auth.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/auth/auth.interface.ts -------------------------------------------------------------------------------- /src/shared/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/auth/auth.module.ts -------------------------------------------------------------------------------- /src/shared/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/auth/auth.service.ts -------------------------------------------------------------------------------- /src/shared/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/auth/index.ts -------------------------------------------------------------------------------- /src/shared/auth/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/auth/jwt.strategy.ts -------------------------------------------------------------------------------- /src/shared/log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/log/index.ts -------------------------------------------------------------------------------- /src/shared/log/log-file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/log/log-file.service.ts -------------------------------------------------------------------------------- /src/shared/log/log.constant.ts: -------------------------------------------------------------------------------- 1 | export const FILE_LOG = 'file'; 2 | -------------------------------------------------------------------------------- /src/shared/log/log.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/log/log.helper.ts -------------------------------------------------------------------------------- /src/shared/log/log.interface.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/shared/log/log.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/log/log.module.ts -------------------------------------------------------------------------------- /src/shared/log/log.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/log/log.service.ts -------------------------------------------------------------------------------- /src/shared/mysql/mysql-file-log.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/mysql/mysql-file-log.service.ts -------------------------------------------------------------------------------- /src/shared/mysql/mysql.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/mysql/mysql.constant.ts -------------------------------------------------------------------------------- /src/shared/mysql/mysql.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/mysql/mysql.module.ts -------------------------------------------------------------------------------- /src/shared/mysql/mysql.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/mysql/mysql.provider.ts -------------------------------------------------------------------------------- /src/shared/mysql/snake-naming.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/mysql/snake-naming.strategy.ts -------------------------------------------------------------------------------- /src/shared/redis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/redis/index.ts -------------------------------------------------------------------------------- /src/shared/redis/redis.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/redis/redis.constant.ts -------------------------------------------------------------------------------- /src/shared/redis/redis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/redis/redis.module.ts -------------------------------------------------------------------------------- /src/shared/redis/redis.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/redis/redis.provider.ts -------------------------------------------------------------------------------- /src/shared/redis/redis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/redis/redis.service.ts -------------------------------------------------------------------------------- /src/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/shared.module.ts -------------------------------------------------------------------------------- /src/shared/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/storage/index.ts -------------------------------------------------------------------------------- /src/shared/storage/storage.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/src/shared/storage/storage.module.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllenBei/nest-client-service/HEAD/yarn.lock --------------------------------------------------------------------------------