feat(storage): 添加默认存储提供者以支持存储功能

This commit is contained in:
2025-12-30 21:18:29 +08:00
parent cf29a2bf1a
commit ff22ca1264
2 changed files with 9 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ import (
"quyun/v2/providers/job"
"quyun/v2/providers/jwt"
"quyun/v2/providers/postgres"
"quyun/v2/providers/storage"
"go.ipao.vip/atom"
"go.ipao.vip/atom/container"
@@ -36,6 +37,7 @@ func defaultProviders() container.Providers {
jwt.DefaultProvider(),
job.DefaultProvider(),
database.DefaultProvider(),
storage.DefaultProvider(),
}...)
}