14 lines
172 B
Go
14 lines
172 B
Go
package internal
|
|
|
|
import "html/template"
|
|
|
|
type Result struct {
|
|
ID string
|
|
URL string
|
|
Title string
|
|
Summary template.HTML
|
|
Length int
|
|
}
|
|
|
|
type Results []Result
|