11 lines
172 B
Go
11 lines
172 B
Go
|
package fetcher
|
||
|
|
||
|
type Metadata struct {
|
||
|
Title string
|
||
|
Description string
|
||
|
}
|
||
|
|
||
|
type MetadataFetcher interface {
|
||
|
FetchMetadata([]string) (map[string]Metadata, error)
|
||
|
}
|