Files
panel/internal/data/data.go
T
耗子 71e259ba32 feat: 支持通行密钥登录 (#1432)
* feat: 支持通行密钥登录

* fix: 修复AI评论

* Update pkg/passkey/passkey.go

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* fix: lint

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2026-02-26 23:50:18 +08:00

41 lines
726 B
Go

package data
import "github.com/google/wire"
// ProviderSet is data providers.
var ProviderSet = wire.NewSet(
NewAppRepo,
NewBackupRepo,
NewBackupAccountRepo,
NewCacheRepo,
NewCertRepo,
NewCertAccountRepo,
NewCertDNSRepo,
NewContainerRepo,
NewContainerComposeRepo,
NewContainerImageRepo,
NewContainerNetworkRepo,
NewContainerVolumeRepo,
NewCronRepo,
NewDatabaseRepo,
NewDatabaseRedisRepo,
NewDatabaseServerRepo,
NewDatabaseUserRepo,
NewEnvironmentRepo,
NewLogRepo,
NewMonitorRepo,
NewProjectRepo,
NewSafeRepo,
NewScanEventRepo,
NewSettingRepo,
NewSSHRepo,
NewTaskRepo,
NewTemplateRepo,
NewUserRepo,
NewUserPasskeyRepo,
NewUserTokenRepo,
NewWebHookRepo,
NewWebsiteRepo,
NewWebsiteStatRepo,
)