Files
faketunes/internal/domains/cacher/dto/cache_item.go

10 lines
104 B
Go
Raw Normal View History

package dto
import "time"
type CacheItem struct {
Path string
Size int64
Updated time.Time
}