10 lines
167 B
Go
10 lines
167 B
Go
package definition
|
|
|
|
import "time"
|
|
|
|
type Basket struct {
|
|
ID string `db:"id"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
UpdatedAt time.Time `db:"updated_at"`
|
|
}
|