Files
crawlab/core/interfaces/export_service.go
2024-06-14 15:42:50 +08:00

8 lines
230 B
Go

package interfaces
type ExportService interface {
GenerateId() (exportId string, err error)
Export(exportType, target string, filter Filter) (exportId string, err error)
GetExport(exportId string) (export Export, err error)
}