10 lines
104 B
Go
10 lines
104 B
Go
|
|
package dto
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type CacheItem struct {
|
||
|
|
Path string
|
||
|
|
Size int64
|
||
|
|
Updated time.Time
|
||
|
|
}
|