12 lines
276 B
Go
12 lines
276 B
Go
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
|
|
|
|
package caches
|
|
|
|
import "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
|
|
|
type FileDir struct {
|
|
Path string
|
|
Capacity *shared.SizeCapacity
|
|
IsFull bool
|
|
}
|