mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 08:53:15 +01:00
7 lines
214 B
Go
7 lines
214 B
Go
package source
|
|
|
|
type DirectoryMetadata struct {
|
|
Path string `json:"path" yaml:"path"`
|
|
Base string `json:"-" yaml:"-"` // though this is important, for display purposes it leaks too much information (abs paths)
|
|
}
|