package structs // Items defines multiple files or directories type Items []Item // Item describes a file or directory type Item struct { IsDir bool Name string HumanSize int64 HumanModTime string IsSymlink bool URL string Size string Download bool }