12 lines
212 B
Go
12 lines
212 B
Go
package model
|
|
|
|
import (
|
|
"github.com/jackc/pgtype"
|
|
)
|
|
|
|
type BasketModel struct {
|
|
ID string `db:"id"`
|
|
CreatedAt pgtype.Timestamp `db:"created_at"`
|
|
UpdatedAt pgtype.Timestamp `db:"updated_at"`
|
|
}
|