mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
e3bf375035
update kubernetes to latest v1.25.0 release. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
10 lines
151 B
Go
10 lines
151 B
Go
package internal
|
|
|
|
func MakeIncrementingIndexCounter() func() (int, error) {
|
|
idx := -1
|
|
return func() (int, error) {
|
|
idx += 1
|
|
return idx, nil
|
|
}
|
|
}
|