mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-14 00:11:28 +05:30
1ab1037707
Signed-off-by: Tycho Andersen <tycho@docker.com>
11 lines
185 B
Go
11 lines
185 B
Go
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-credential-helpers/credentials"
|
|
"github.com/docker/docker-credential-helpers/pass"
|
|
)
|
|
|
|
func main() {
|
|
credentials.Serve(pass.Pass{})
|
|
}
|