receipt_indexer/backend/internal/storage/images.go
Ethan Wellenreiter 031942c9d9 Early stages of the storage classes/decouplers for receipts and such
Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
2025-04-30 20:58:38 -04:00

9 lines
177 B
Go

package storage
type Image struct {
ID int64 `json:"id"`
ReceiptID string `json:"receipt_id"`
CreatedAt string `json:"created_at"`
Path string `json:"path"`
}