13 lines
336 B
Go
13 lines
336 B
Go
package catalog
|
|
|
|
import "github.com/jackc/pgtype"
|
|
|
|
type Product struct {
|
|
ID string `db:"id"`
|
|
Slug string `db:"slug"`
|
|
Name string `db:"name"`
|
|
Price float64 `db:"price"`
|
|
CreatedAt pgtype.Timestamp `db:"created_at"`
|
|
UpdatedAt pgtype.Timestamp `db:"updated_at,omitempty"`
|
|
}
|