yogai/fetcher/metadata.go

11 lines
172 B
Go
Raw Normal View History

2023-05-10 20:08:45 +02:00
package fetcher
type Metadata struct {
Title string
Description string
}
type MetadataFetcher interface {
FetchMetadata([]string) (map[string]Metadata, error)
}