package catalog import ( "time" ) type Product struct { Name string `db:"name"` Slug string `db:"slug"` Price float64 `db:"price"` CreatedAt time.Time `db:"created_at"` UpdatedAt *time.Time `db:"updated_at"` }