fix: added modified_at to ListRepo

This commit is contained in:
Robin Dittmar
2026-07-20 21:06:21 +02:00
parent c623e02b6c
commit 5f4e95b3f7
2 changed files with 6 additions and 5 deletions
+4 -3
View File
@@ -7,9 +7,10 @@ import (
)
type List struct {
ID string `json:"id"`
Name string `json:"name"`
CreatedAt time.Time `json:"created_at"`
ID string `json:"id"`
Name string `json:"name"`
CreatedAt time.Time `json:"created_at"`
ModifiedAt time.Time `json:"modified_at"`
}
type ListRepository interface {