mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
12 lines
330 B
Go
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")
|
|
}
|