mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
11 lines
130 B
Go
11 lines
130 B
Go
package controller
|
|
|
|
func alwaysReady() bool {
|
|
return true
|
|
}
|
|
|
|
func toFloatPtr(val int) *float64 {
|
|
v := float64(val)
|
|
return &v
|
|
}
|