mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 15:16:33 -08:00
* fix(github): return db size * fix(github_mock): add size * feat(indicator): add progress bar * refactor(config): remove global Quiet * fix(db): take progress bar as an argument * fix(progress): inject progress bar
14 lines
214 B
Go
14 lines
214 B
Go
// +build wireinject
|
|
|
|
package operation
|
|
|
|
import (
|
|
"github.com/aquasecurity/trivy/pkg/db"
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
func initializeDBClient(quiet bool) db.Client {
|
|
wire.Build(db.SuperSet)
|
|
return db.Client{}
|
|
}
|