fix: format code with gofmt

This commit is contained in:
2026-03-07 04:36:52 +01:00
parent 8883cdcb86
commit aae68ba20e
3 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -124,12 +124,12 @@ type SyncHabitDTO struct {
}
type SyncHabitEntryDTO struct {
ID string `json:"id"`
HabitID string `json:"habit_id"`
ScheduledDate time.Time `json:"scheduled_date"`
CompletedAt time.Time `json:"completed_at"`
Value *float64 `json:"value,omitempty"`
UpdatedAt time.Time `json:"updated_at"`
ID string `json:"id"`
HabitID string `json:"habit_id"`
ScheduledDate time.Time `json:"scheduled_date"`
CompletedAt time.Time `json:"completed_at"`
Value *float64 `json:"value,omitempty"`
UpdatedAt time.Time `json:"updated_at"`
}
type HabitChangesDTO struct {