syft/imgbom/distro/identify.go
2020-06-01 10:46:06 -04:00

12 lines
330 B
Go

package distro
import (
"github.com/anchore/stereoscope/pkg/image"
)
func Identify(img *image.Image) (Distro, error) {
// TODO: implement me based off of https://github.com/anchore/anchore-engine/blob/78b23d7e8f007005c070673405b5e23730a660e0/anchore_engine/analyzers/utils.py#L131
return NewDistro(UnknownDistro, "0.0.0")
}