mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-14 00:11:28 +05:30
a96948acb3
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
11 lines
202 B
Go
11 lines
202 B
Go
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-credential-helpers/credentials"
|
|
"github.com/docker/docker-credential-helpers/secretservice"
|
|
)
|
|
|
|
func main() {
|
|
credentials.Serve(secretservice.New())
|
|
}
|