gitextract_m15fhcc9/ ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .run/ │ └── Comfy-server.run.xml ├── Dockerfile ├── README.md ├── docker-compose.yml.example ├── init.sql ├── nest-cli.json ├── package.json ├── pm2.config.js ├── src/ │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── auth/ │ │ ├── auth.controller.ts │ │ ├── auth.guard.ts │ │ ├── auth.module.ts │ │ ├── auth.service.ts │ │ └── constants.ts │ ├── cache/ │ │ ├── cache.controller.ts │ │ ├── cache.module.ts │ │ └── cache.service.ts │ ├── draw/ │ │ ├── DrawCosumer.ts │ │ ├── data/ │ │ │ ├── AImodel_api.json │ │ │ ├── DrawConfig.ts │ │ │ ├── aistudio_api.json │ │ │ ├── api_matting.json │ │ │ ├── api_removebg.json │ │ │ ├── api_upscale.json │ │ │ ├── api_upscale_detailfix.json │ │ │ ├── api_wechat_img2imgi.json │ │ │ ├── impaiting_api.json │ │ │ ├── objectInfo.json │ │ │ ├── test.json │ │ │ ├── text2imgapi.json │ │ │ ├── workflow_api_faceswap.ts │ │ │ ├── workflow_api_hdfix_4.ts │ │ │ ├── workflow_api_image2img.json │ │ │ ├── workflow_api_image2img.ts │ │ │ ├── workflow_api_img2video.json │ │ │ ├── workflow_api_img2video.ts │ │ │ ├── workflow_api_inpainting.json │ │ │ ├── workflow_api_inpainting.ts │ │ │ ├── workflow_api_matting.json │ │ │ ├── workflow_api_matting.ts │ │ │ ├── workflow_api_model.ts │ │ │ ├── workflow_api_removebg.json │ │ │ ├── workflow_api_removebg.ts │ │ │ ├── workflow_api_tagger.ts │ │ │ ├── workflow_api_text2img.json │ │ │ └── workflow_api_text2img.ts │ │ ├── draw.controller.ts │ │ ├── draw.module.ts │ │ └── draw.service.ts │ ├── file/ │ │ ├── file.controller.ts │ │ ├── file.module.ts │ │ └── file.service.ts │ ├── main.ts │ ├── middleware/ │ │ └── XML.middleware.ts │ ├── oneapi/ │ │ ├── tokens/ │ │ │ ├── dto/ │ │ │ │ ├── create-token.dto.ts │ │ │ │ └── update-token.dto.ts │ │ │ ├── entities/ │ │ │ │ └── token.entity.ts │ │ │ ├── tokens.controller.ts │ │ │ ├── tokens.module.ts │ │ │ └── tokens.service.ts │ │ └── users/ │ │ ├── dto/ │ │ │ ├── create-user.dto.ts │ │ │ └── update-user.dto.ts │ │ ├── entities/ │ │ │ └── user.entity.ts │ │ ├── users.controller.ts │ │ ├── users.module.ts │ │ └── users.service.ts │ ├── tweet/ │ │ ├── dto/ │ │ │ ├── create-tweet.dto.ts │ │ │ └── update-tweet.dto.ts │ │ ├── entities/ │ │ │ └── tweet.schema.ts │ │ ├── tweet.controller.ts │ │ ├── tweet.module.ts │ │ └── tweet.service.ts │ ├── users/ │ │ ├── dto/ │ │ │ ├── create-user.dto.ts │ │ │ └── update-user.dto.ts │ │ ├── schema/ │ │ │ └── user.schema.ts │ │ ├── users.controller.ts │ │ ├── users.module.ts │ │ └── users.service.ts │ ├── wechat-auth/ │ │ ├── wechat-auth.controller.ts │ │ ├── wechat-auth.module.ts │ │ └── wechat-auth.service.ts │ └── ws/ │ └── ws.gateway.ts ├── tsconfig.build.json └── tsconfig.json