1 package main 2 3 import ( 4 "github.com/docker/docker-credential-helpers/credentials" 5 "github.com/docker/docker-credential-helpers/pass" 6 ) 7 8 func main() { 9 credentials.Serve(pass.Pass{}) 10 } 11
View as plain text