package sqan import ( "time" ) type File struct { RootDir string `json:"rootDir,omitempty"` AbsolutePath string `json:"absolutePath,omitempty"` RelativeDir string `json:"relativeDir,omitempty"` RelativePath string `json:"relativePath,omitempty"` Filename string `json:"filename,omitempty"` Extension string `json:"extension,omitempty"` Size int64 `json:"size,omitempty"` Modified time.Time `json:"modified,omitempty"` }