Files
tgex-backend/tg_parser/internal/domain/views_snapshot.go
T
root a33fa24e99
Build & Push / build (push) Canceled after 0s
Initial commit
2026-08-05 19:31:35 +03:00

15 lines
150 B
Go

package domain
import (
"time"
"github.com/google/uuid"
)
type ViewsSnapshot struct {
ViewsCount int
FetchedAt time.Time
PostID uuid.UUID
}