mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-14 00:11:28 +05:30
6a2f53622b
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
13 lines
237 B
Go
13 lines
237 B
Go
//go:build linux && cgo
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/docker/docker-credential-helpers/credentials"
|
|
"github.com/docker/docker-credential-helpers/secretservice"
|
|
)
|
|
|
|
func main() {
|
|
credentials.Serve(secretservice.Secretservice{})
|
|
}
|