mirror of
https://github.com/mayflower/docker-ls.git
synced 2025-04-19 13:02:17 +03:00
7 lines
87 B
Go
7 lines
87 B
Go
package auth
|
|
|
|
type RegistryCredentials interface {
|
|
User() string
|
|
Password() string
|
|
}
|