Skip to content

Commit

Permalink
Fix FileInfo-related linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Willie Sana committed Aug 9, 2020
1 parent f030748 commit 38590bc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/data/file/importer.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package file

type FileInfo struct {
// Info File info
type Info struct {
Path string
Hash string
HashType string
Expand All @@ -12,8 +13,8 @@ type Group struct {
Name string
IsReadOnly bool
VerifySignatures bool
Directories []*FileInfo
Files []*FileInfo
Directories []*Info
Files []*Info
}

// Metadata File metadata
Expand Down

0 comments on commit 38590bc

Please sign in to comment.