feat: 密钥调整为异步任务,取消数量限制

This commit is contained in:
tbphp
2025-07-20 08:52:54 +08:00
parent 86c28dc20c
commit 90498298bf
12 changed files with 213 additions and 40 deletions

View File

@@ -51,6 +51,9 @@ func BuildContainer() (*dig.Container, error) {
if err := container.Provide(services.NewKeyService); err != nil {
return nil, err
}
if err := container.Provide(services.NewKeyImportService); err != nil {
return nil, err
}
if err := container.Provide(services.NewLogService); err != nil {
return nil, err
}