add sync period to helm repo

Signed-off-by: LiHui <andrewli@kubesphere.io>
This commit is contained in:
LiHui
2021-09-14 10:39:01 +08:00
parent bab5cf27e3
commit b8d85fb75c
8 changed files with 77 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
package mathutil
// Max returns the larger of a and b.
func Max(a, b int) int {
if a >= b {
return a
}
return b
}