Skip to content

Commit b7f2dcf

Browse files
committed
fix: only first const had type
1 parent f33afb4 commit b7f2dcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pkg/types/driver.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ type ContainerCondition string
1313

1414
const (
1515
ContainerStarted ContainerCondition = "START"
16-
ContainerComplete = "COMPLETE"
17-
ContainerSuccess = "SUCCESS"
18-
ContainerHealthy = "HEALTHY"
16+
ContainerComplete ContainerCondition = "COMPLETE"
17+
ContainerSuccess ContainerCondition = "SUCCESS"
18+
ContainerHealthy ContainerCondition = "HEALTHY"
1919
)
2020

2121
type Container struct {

0 commit comments

Comments
 (0)