Files
faketunes/internal/domains/cacher/models/cacher_stat.go

10 lines
171 B
Go
Raw Permalink Normal View History

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