[PR #1] [MERGED] Add multiple implement and docs #8

Closed
opened 2026-02-16 09:18:54 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-cloud-kit/pull/1
Author: @41tair
Created: 5/28/2025
Status: Merged
Merged: 5/28/2025
Merged by: @41tair

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

15 files changed (+1967 additions, -2 deletions)

View changed files

📝 README.md (+109 -2)
go.mod (+89 -0)
go.sum (+210 -0)
oss/aliyun/aliyun.go (+203 -0)
oss/azureblob/blob.go (+131 -0)
oss/errors.go (+39 -0)
oss/factory/factory.go (+49 -0)
oss/gcsblob/gcs.go (+143 -0)
oss/huanweiobs/obs.go (+165 -0)
oss/local/localfile.go (+111 -0)
oss/local/localfile_test.go (+1 -0)
oss/oss.go (+160 -0)
oss/s3/s3.go (+206 -0)
oss/tencentcos/cos.go (+178 -0)
tests/oss/oss_test.go (+173 -0)

📄 Description

Vendors

  1. Aliyun OSS
  2. Azure Blob
  3. Google Cloud Storage
  4. Huawei OBS
  5. Local
  6. AWS S3

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-cloud-kit/pull/1 **Author:** [@41tair](https://github.com/41tair) **Created:** 5/28/2025 **Status:** ✅ Merged **Merged:** 5/28/2025 **Merged by:** [@41tair](https://github.com/41tair) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f9885e7`](https://github.com/langgenius/dify-cloud-kit/commit/f9885e73d5ad409afb19a65327b0c199b479053d) add oss factory and s3 implement - [`63ffc28`](https://github.com/langgenius/dify-cloud-kit/commit/63ffc289fe0865b3062e527a40dc2c37d300b085) update tests - [`0167ff4`](https://github.com/langgenius/dify-cloud-kit/commit/0167ff48e4dd02d452df85bea212d2608e46ab2d) add azure blob implement - [`a723351`](https://github.com/langgenius/dify-cloud-kit/commit/a723351e0bd2bafe6be8780c22dcd31a451b5678) add aliyun oss implement - [`6e84671`](https://github.com/langgenius/dify-cloud-kit/commit/6e84671a140978a232f8d47ad17281c056f3b4d1) add tencent cos implement - [`1f32c5f`](https://github.com/langgenius/dify-cloud-kit/commit/1f32c5f0311190dcc9540f3dc504ccd6db233b23) enhance s3 create bucket logic, only create if not found - [`7ec23db`](https://github.com/langgenius/dify-cloud-kit/commit/7ec23dbc64bad599b27c5dcea656df0fac1de30f) add gcs implement - [`fa1f47c`](https://github.com/langgenius/dify-cloud-kit/commit/fa1f47cd40557925a9134c9a084a76b31844bffe) add huawei obs implement - [`d6feb81`](https://github.com/langgenius/dify-cloud-kit/commit/d6feb813fada0a67e173ce8a0f287e23600cd66f) add readme - [`7ea3730`](https://github.com/langgenius/dify-cloud-kit/commit/7ea3730c718f10fca2e2ba597a79fd9747960353) add readme ### 📊 Changes **15 files changed** (+1967 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+109 -2) ➕ `go.mod` (+89 -0) ➕ `go.sum` (+210 -0) ➕ `oss/aliyun/aliyun.go` (+203 -0) ➕ `oss/azureblob/blob.go` (+131 -0) ➕ `oss/errors.go` (+39 -0) ➕ `oss/factory/factory.go` (+49 -0) ➕ `oss/gcsblob/gcs.go` (+143 -0) ➕ `oss/huanweiobs/obs.go` (+165 -0) ➕ `oss/local/localfile.go` (+111 -0) ➕ `oss/local/localfile_test.go` (+1 -0) ➕ `oss/oss.go` (+160 -0) ➕ `oss/s3/s3.go` (+206 -0) ➕ `oss/tencentcos/cos.go` (+178 -0) ➕ `tests/oss/oss_test.go` (+173 -0) </details> ### 📄 Description Vendors 1. Aliyun OSS 2. Azure Blob 3. Google Cloud Storage 4. Huawei OBS 5. Local 6. AWS S3 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 09:18:54 -05:00
yindo closed this issue 2026-02-16 09:18:54 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-cloud-kit#8