activity.go 162 B

1234567
  1. package model
  2. // Activities is the model for all challenge activities
  3. type Activities struct {
  4. Logs []*WLog `json:"logs"`
  5. Events []*Event `json:"events"`
  6. }