Files
spyda/internal/results.go
2021-02-07 21:15:34 +10:00

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