model.go — Data Model
The Bookmark struct shared by the store, API handlers, and templates.
package main
import "time"
type Bookmark struct {
ID int `json:"id"`
URL string `json:"url"`
Title string `json:"title"`
CreatedAt time.Time `json:"created_at"`
}