Files
panel/internal/data/data.go
T
耗子andClaude Opus 4.6 9a1555c48a feat: 防火墙扫描感知功能 & 首页容器统计 & lint 修复
- 新增 eBPF 扫描感知:TC ingress 检测 SYN/UDP 扫描,端口白名单过滤
- 新增首页容器数量统计卡片,未安装容器环境时自动隐藏
- 扫描概览页:统计卡片、趋势图、Top IP/端口、事件列表
- 扫描设置页:启用开关、保留天数、网卡选择
- 统计对比改为同长度上一周期,替代固定昨日对比
- eBPF ports map MaxEntries 扩展至 65535 覆盖全端口
- 修复 WriteString(fmt.Sprintf()) lint 问题,改用 fmt.Fprintf
- 修复 database_redis.go 非常量格式字符串和 govet 警告

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 02:52:32 +08:00

39 lines
684 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,
NewUserTokenRepo,
NewWebHookRepo,
NewWebsiteRepo,
)