| 123456789101112131415161718192021 |
- package models
- type Event struct {
- Project string
- Summary string `json:"summary"`
- Description string `json:"description"`
- StartTime string
- EndTime string
- Date string
- Duration float64
- }
- type Project struct {
- Name string
- TotalHours float64
- }
- type Projects struct {
- Projects []Project
- TotalHours float64
- }
|