mirror of https://github.com/docker/compose.git
fix lint issue - renamed CompatibilityChecker to Checker
Signed-off-by: aiordache <anca.iordache@docker.com> Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
bb98dae082
commit
9e8ddb63cc
|
@ -8,7 +8,7 @@ import (
|
|||
type Warning string
|
||||
type Warnings []string
|
||||
|
||||
type CompatibilityChecker interface {
|
||||
type Checker interface {
|
||||
CheckService(service *types.ServiceConfig)
|
||||
CheckCapAdd(service *types.ServiceConfig)
|
||||
CheckDNS(service *types.ServiceConfig)
|
||||
|
|
|
@ -168,4 +168,4 @@ func (c *FargateCompatibilityChecker) CheckLabels(service *types.ServiceConfig)
|
|||
}
|
||||
}
|
||||
|
||||
var _ CompatibilityChecker = &FargateCompatibilityChecker{}
|
||||
var _ Checker = &FargateCompatibilityChecker{}
|
||||
|
|
Loading…
Reference in New Issue