Files
mayfly-go/server/internal/db/domain/service/db_binlog.go
2023-12-29 08:30:10 +08:00

15 lines
405 B
Go

package service
import (
"context"
"mayfly-go/internal/db/domain/entity"
)
type DbBinlogSvc interface {
AddTaskIfNotExists(ctx context.Context, task *entity.DbBinlog) error
UpdateTask(ctx context.Context, task *entity.DbBinlog) error
DeleteTask(ctx context.Context, taskId uint64) error
EnableTask(ctx context.Context, taskId uint64) error
DisableTask(ctx context.Context, taskId uint64) error
}