mirror of
https://github.com/JaCoB1123/dupe-finder.git
synced 2025-05-18 06:01:56 +02:00
Remove empty lines from struct
This commit is contained in:
parent
e314e89657
commit
c667707704
33
filesmap.go
33
filesmap.go
@ -14,29 +14,18 @@ import (
|
|||||||
|
|
||||||
// FilesMap is a struct for listing files by Size and Hash to search for duplicates
|
// FilesMap is a struct for listing files by Size and Hash to search for duplicates
|
||||||
type FilesMap struct {
|
type FilesMap struct {
|
||||||
Images []imageEntry
|
Images []imageEntry
|
||||||
|
FilesBySize map[int64]string
|
||||||
FilesBySize map[int64]string
|
FilesByHash map[string][]string
|
||||||
|
FilesHashing chan fileEntry
|
||||||
FilesByHash map[string][]string
|
FilesHashed chan fileEntry
|
||||||
|
ImagesHashing chan imageEntry
|
||||||
FilesHashing chan fileEntry
|
ImagesHashed chan imageEntry
|
||||||
|
progress *mpb.Progress
|
||||||
FilesHashed chan fileEntry
|
incomingBar *mpb.Bar
|
||||||
|
fileHashingBar *mpb.Bar
|
||||||
ImagesHashing chan imageEntry
|
|
||||||
|
|
||||||
ImagesHashed chan imageEntry
|
|
||||||
|
|
||||||
progress *mpb.Progress
|
|
||||||
|
|
||||||
incomingBar *mpb.Bar
|
|
||||||
|
|
||||||
fileHashingBar *mpb.Bar
|
|
||||||
|
|
||||||
imageHashingBar *mpb.Bar
|
imageHashingBar *mpb.Bar
|
||||||
|
lock sync.Mutex
|
||||||
lock sync.Mutex
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func newFilesMap() *FilesMap {
|
func newFilesMap() *FilesMap {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user