use gh-attestation branch for passing iostreams from the root

Signed-off-by: Meredith Lancaster <malancas@github.com>
This commit is contained in:
Meredith Lancaster 2024-02-13 15:21:50 -07:00
parent cd221b7d1e
commit e3ae656fc6
3 changed files with 6 additions and 6 deletions

View file

@ -13,9 +13,9 @@ func NewCmdAttestation(io *iostreams.IOStreams, version, buildDate string) *cobr
Short: "attestations",
}
root.AddCommand(app.NewDownloadCmd(version, buildDate))
root.AddCommand(app.NewVerifyCmd(version, buildDate))
root.AddCommand(app.NewTUFRootVerifyCmd())
root.AddCommand(app.NewDownloadCmd(io, version, buildDate))
root.AddCommand(app.NewVerifyCmd(io, version, buildDate))
root.AddCommand(app.NewTUFRootVerifyCmd(io))
return root
}