Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Fact ¶
type Fact struct {
// Unique identifier for the fact, document, or resource.
ID string `json:"id,omitempty"`
// Category or group the fact belongs to.
Category string `json:"category,omitempty"`
// Human-readable headline, title about the fact.
Title string `json:"title,omitempty"`
// Short description or abstract of the fact.
Snippet string `json:"snippet,omitempty"`
// Url to the resource represented by the fact.
Url string `json:"url,omitempty"`
// Date when the fact was created, published, or indexed.
Date *time.Time `json:"date,omitempty"`
}
Fact represents a single search result fact. The type acts as denominator for various search engines.
func OnlyLatest ¶ added in v0.0.4
Click to show internal directories.
Click to hide internal directories.