Files
trivy/extractor/docker/token/dockerhub/docker.go
2019-05-09 11:06:20 +09:00

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
}