Refactor kafka to pure Go (franz-go), fix DBC stubs, update Dockerfile
This commit is contained in:
9
pkg/can-go/internal/identifiers/char.go
Normal file
9
pkg/can-go/internal/identifiers/char.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package identifiers
|
||||
|
||||
func IsAlphaChar(r rune) bool {
|
||||
return ('A' <= r && r <= 'Z') || ('a' <= r && r <= 'z')
|
||||
}
|
||||
|
||||
func IsNumChar(r rune) bool {
|
||||
return '0' <= r && r <= '9'
|
||||
}
|
||||
Reference in New Issue
Block a user