mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
13 lines
167 B
Go
13 lines
167 B
Go
package text
|
|
|
|
import "github.com/anchore/syft/syft/format"
|
|
|
|
func Format() format.Format {
|
|
return format.NewFormat(
|
|
format.TextOption,
|
|
encoder,
|
|
nil,
|
|
nil,
|
|
)
|
|
}
|