chore: update DNS providers dependencies. (#915)

This commit is contained in:
Ludovic Fernandez 2019-07-04 18:24:33 +02:00 committed by GitHub
parent 8dcc55b828
commit f5cd138ea6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
525 changed files with 49654 additions and 6925 deletions

View file

@ -0,0 +1,11 @@
package ini
var commaRunes = []rune(",")
func isComma(b rune) bool {
return b == ','
}
func newCommaToken() Token {
return newToken(TokenComma, commaRunes, NoneType)
}