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
|
||||
type FilesMap struct {
|
||||
Images []imageEntry
|
||||
|
||||
FilesBySize map[int64]string
|
||||
|
||||
FilesByHash map[string][]string
|
||||
|
||||
FilesHashing chan fileEntry
|
||||
|
||||
FilesHashed chan fileEntry
|
||||
|
||||
ImagesHashing chan imageEntry
|
||||
|
||||
ImagesHashed chan imageEntry
|
||||
|
||||
progress *mpb.Progress
|
||||
|
||||
incomingBar *mpb.Bar
|
||||
|
||||
fileHashingBar *mpb.Bar
|
||||
|
||||
Images []imageEntry
|
||||
FilesBySize map[int64]string
|
||||
FilesByHash map[string][]string
|
||||
FilesHashing chan fileEntry
|
||||
FilesHashed chan fileEntry
|
||||
ImagesHashing chan imageEntry
|
||||
ImagesHashed chan imageEntry
|
||||
progress *mpb.Progress
|
||||
incomingBar *mpb.Bar
|
||||
fileHashingBar *mpb.Bar
|
||||
imageHashingBar *mpb.Bar
|
||||
|
||||
lock sync.Mutex
|
||||
lock sync.Mutex
|
||||
}
|
||||
|
||||
func newFilesMap() *FilesMap {
|
||||
|
Loading…
x
Reference in New Issue
Block a user