mirror of
https://github.com/mayflower/docker-ls.git
synced 2025-11-28 00:01:09 +03:00
12 lines
202 B
Go
12 lines
202 B
Go
package connector
|
|
|
|
import (
|
|
"git.mayflower.de/vaillant-team/docker-ls/lib/auth"
|
|
)
|
|
|
|
type Config interface {
|
|
MaxConcurrentRequests() uint
|
|
Credentials() auth.RegistryCredentials
|
|
AllowInsecure() bool
|
|
}
|