2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 17:17:13 +08:00
Files
panel/internal/data/data.go
2025-03-20 02:49:18 +08:00

30 lines
514 B
Go

package data
import "github.com/google/wire"
// ProviderSet is data providers.
var ProviderSet = wire.NewSet(
NewAppRepo,
NewBackupRepo,
NewCacheRepo,
NewCertRepo,
NewCertAccountRepo,
NewCertDNSRepo,
NewContainerRepo,
NewContainerComposeRepo,
NewContainerImageRepo,
NewContainerNetworkRepo,
NewContainerVolumeRepo,
NewCronRepo,
NewDatabaseRepo,
NewDatabaseServerRepo,
NewDatabaseUserRepo,
NewMonitorRepo,
NewSafeRepo,
NewSettingRepo,
NewSSHRepo,
NewTaskRepo,
NewUserRepo,
NewWebsiteRepo,
)