gitextract_iuwhz8zx/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── docker-image-release.yml │ └── docker-image.yml ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── yopngs/ │ ├── Controllers/ │ │ └── ApiController.cs │ ├── Dockerfile │ ├── IStore/ │ │ ├── IDataStore.cs │ │ ├── IStoreCheck.cs │ │ ├── IStoreCompress.cs │ │ ├── SotreCenter.cs │ │ ├── StoreBase.cs │ │ ├── StoreCheckNsfwWarperResetAPI.cs │ │ ├── StoreCompressPngQuantWarper.cs │ │ └── StoreCompressTinyWarper.cs │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Stores/ │ │ ├── B2Store.cs │ │ ├── COSStore.cs │ │ ├── DISKStore.cs │ │ ├── GithubStore.cs │ │ ├── OSSStore.cs │ │ └── S3Store.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── defaultsetting.json │ ├── wwwroot/ │ │ ├── index.html │ │ └── static/ │ │ ├── file.js │ │ └── style.css │ ├── yopngs.csproj │ └── yopngs.runtimeconfig.json └── yopngs.sln