mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
11 lines
120 B
Go
11 lines
120 B
Go
package spdx22json
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func validator(reader io.Reader) error {
|
|
_, err := decoder(reader)
|
|
return err
|
|
}
|