2022-05-24 18:03:31 +09:30
|
|
|
package entity
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Bookmark struct {
|
2022-05-28 16:16:08 +09:30
|
|
|
ID uint64 `boltholdKey:"ID"`
|
2022-05-24 18:03:31 +09:30
|
|
|
URL string
|
|
|
|
Info PageInfo
|
|
|
|
Tags []string
|
|
|
|
TimestampCreated time.Time
|
|
|
|
TimestampLastScraped time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type PageInfo struct {
|
|
|
|
Fetched time.Time
|
|
|
|
Title string
|
|
|
|
Size int
|
|
|
|
StatusCode int
|
|
|
|
RawText string
|
|
|
|
}
|