mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-03 03:40:39 +08:00

updated kubernetes packages to latest release. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
12 lines
173 B
Go
12 lines
173 B
Go
package ini
|
|
|
|
var commaRunes = []rune(",")
|
|
|
|
func isComma(b rune) bool {
|
|
return b == ','
|
|
}
|
|
|
|
func newCommaToken() Token {
|
|
return newToken(TokenComma, commaRunes, NoneType)
|
|
}
|