bookscrape/types.go

24 lines
391 B
Go

package main
type fileSource struct {
Url string
Format string
}
type doc struct {
Title string
Files []fileSource
Author string
Subjects []string
Description string
LastUpdate string
License string
}
type sourceData struct {
Name string
LastUpdate string
Url string
Documents []doc
}