Monorepo for Tangled
Something went wrong. Try again.
Go
123456789101112131415package models
import "time"
type Punch struct { Did string Date time.Time Count int}
type Punchcard struct { Total int Punches []Punch}