Skip to content

Commit

Permalink
Update immich.go
Browse files Browse the repository at this point in the history
  • Loading branch information
damongolding authored Oct 15, 2024
1 parent 63498d7 commit f008412
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions immich/immich.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,17 @@ type People []struct {
ThumbnailPath string `json:"-"` // `json:"thumbnailPath"`
IsHidden bool `json:"-"` // `json:"isHidden"`
UpdatedAt time.Time `json:"-"` // `json:"updatedAt"`
Faces Faces `json:"-"` // `json:"faces"`
Faces Faces `json:"faces"`
}

type Faces []struct {
ID string `json:"-"` // `json:"id"`
ImageHeight int `json:"-"` // `json:"imageHeight"`
ImageWidth int `json:"-"` // `json:"imageWidth"`
BoundingBoxX1 int `json:"-"` // `json:"boundingBoxX1"`
BoundingBoxX2 int `json:"-"` // `json:"boundingBoxX2"`
BoundingBoxY1 int `json:"-"` // `json:"boundingBoxY1"`
BoundingBoxY2 int `json:"-"` // `json:"boundingBoxY2"`
ID string `json:"id"`
ImageHeight int `json:"imageHeight"`
ImageWidth int `json:"imageWidth"`
BoundingBoxX1 int `json:"boundingBoxX1"`
BoundingBoxX2 int `json:"boundingBoxX2"`
BoundingBoxY1 int `json:"boundingBoxY1"`
BoundingBoxY2 int `json:"boundingBoxY2"`
}

type ImmichAsset struct {
Expand Down

0 comments on commit f008412

Please sign in to comment.