mirror of
https://github.com/Dvorinka/SEEN.git
synced 2026-06-04 12:33:02 +00:00
9 lines
177 B
Go
9 lines
177 B
Go
package downloader
|
|
|
|
import "context"
|
|
|
|
type Engine interface {
|
|
Add(ctx context.Context, source string) (string, error)
|
|
Status(ctx context.Context, id string) (string, error)
|
|
}
|