12 lines
254 B
Go
12 lines
254 B
Go
package models
|
|
|
|
import "context"
|
|
|
|
type DownloadContext struct {
|
|
Context context.Context
|
|
MatchedContentID string
|
|
MatchedContentURL string
|
|
MatchedGroups map[string]string
|
|
GroupSettings *GroupSettings
|
|
Extractor *Extractor
|
|
}
|