govd/models/ctx.go
2025-04-15 10:46:54 +02:00

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
}