mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-20 22:33:53 -08:00
15 lines
224 B
Go
15 lines
224 B
Go
package dockerhub
|
|
|
|
import "context"
|
|
|
|
type Docker struct {
|
|
}
|
|
|
|
func NewDocker() *Docker {
|
|
return &Docker{}
|
|
}
|
|
|
|
func (d *Docker) GetCredential(ctx context.Context) (username, password string, err error) {
|
|
return "", "", nil
|
|
}
|