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