mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-21 23:00:42 -08:00
* refactor: export internal packages * refactor(server): define Server * refactor: fix lint issues * test(integration): fix imports
14 lines
231 B
Go
14 lines
231 B
Go
// +build wireinject
|
|
|
|
package operation
|
|
|
|
import (
|
|
"github.com/aquasecurity/trivy/pkg/db"
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
func initializeDBClient(cacheDir string, quiet bool) db.Client {
|
|
wire.Build(db.SuperSet)
|
|
return db.Client{}
|
|
}
|