Files
mayfly-go/server/internal/db/domain/repository/db_binlog.go

13 lines
186 B
Go
Raw Normal View History

2023-12-27 22:59:20 +08:00
package repository
import (
"context"
"mayfly-go/internal/db/domain/entity"
)
type DbBinlog interface {
DbJob
2023-12-27 22:59:20 +08:00
AddJobIfNotExists(ctx context.Context, job *entity.DbBinlog) error
2023-12-27 22:59:20 +08:00
}