mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-10 11:20:24 +08:00
8 lines
136 B
Go
8 lines
136 B
Go
package repository
|
|
|
|
type DbBackup interface {
|
|
DbJob
|
|
|
|
GetDbNamesWithoutBackup(instanceId uint64, dbNames []string) ([]string, error)
|
|
}
|