Files
faketunes/internal/domains/cacher/models/cacher_stat.go
Vladimir Hodakov 13ac06c14b Initial commit
Proof-of-concept implementation. Bugs will occur.
2026-02-12 01:18:46 +03:00

10 lines
171 B
Go

package models
import "time"
// CacherStat is representing information about a single object size in cache.
type CacherStat struct {
Size int64
Created time.Time
}