feat: add db list view, search, and excel export

This commit is contained in:
lx1056758714-glitch
2025-12-26 14:30:00 +08:00
parent 27243d1e75
commit 5ceb2f2ffa
10 changed files with 755 additions and 790 deletions

View File

@@ -32,6 +32,9 @@ type DataSource interface {
// 设置回调函数
SetCallback(group string, callback func(event fsnotify.Event) error) error
// 获取数据库列表
GetDBs() (map[string][]string, error)
Close() error
}