mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-13 16:01:28 +05:30
f76f0b3f33
There is nothing linux specific about pass. In particular, I use it in openbsd. Signed-off-by: Rafael Ávila de Espíndola <rafael@espindo.la>
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{})
|
|
}
|