reg/vendor/github.com/docker/docker-credential-helpers/secretservice/cmd/main_linux.go

11 lines
212 B
Go
Raw Normal View History

package main
import (
"github.com/docker/docker-credential-helpers/credentials"
"github.com/docker/docker-credential-helpers/secretservice"
)
func main() {
credentials.Serve(secretservice.Secretservice{})
}