mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-16 04:36:35 +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)
|
|
}
|