very close to rolling this out! just need to address some security concerns first
11 lines
231 B
Go
11 lines
231 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Invite struct {
|
|
Code string `db:"code"`
|
|
CreatedByID string `db:"created_by"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
ExpiresAt time.Time `db:"expires_at"`
|
|
}
|