Richard Patel 79f540bf29
Scheduler
2018-10-28 02:40:12 +02:00

19 lines
249 B
Go

package main
import (
"time"
)
type File struct {
Name string `json:"name"`
Size int64 `json:"size"`
MTime time.Time `json:"mtime"`
Path string `json:"path"`
IsDir bool `json:"-"`
}
type CrawlResult struct {
FileCount int
Status string
}