Files
crawlab/backend/mock/file.go
2019-08-22 16:20:30 +08:00

9 lines
149 B
Go

package mock
type File struct {
Name string `json:"name"`
Path string `json:"path"`
IsDir bool `json:"is_dir"`
Size int64 `json:"size"`
}