3f15326248
Update github.com/aws/aws-sdk-go and github.com/hashicorp/go-discover to pick up support for EC2 Metadata Instance Service v2 changes. Follow up to https://github.com/hashicorp/go-discover/pull/128 .
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)
|
|
}
|