This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
|
package models
|
|
|
|
import "time"
|
|
|
|
type JamProject struct {
|
|
ProjectID int `db:"project_id"`
|
|
JamSlug string `db:"jam_slug"`
|
|
Participating bool `db:"participating"`
|
|
JamName string
|
|
JamStartTime time.Time
|
|
}
|