14 lines
249 B
Go
14 lines
249 B
Go
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,omitempty"`
|
|
}
|