Skip to content

Commit

Permalink
Update acl_types.go
Browse files Browse the repository at this point in the history
Co-Authored-By: Mongey <conor@mongey.net>
  • Loading branch information
Varun and Mongey committed Feb 19, 2019
1 parent e8436b8 commit 97d687c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions acl_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ type AclResourcePatternType int
// ref: https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/common/resource/PatternType.java

const (
AclPatternUnknown AclResourcePatternType = iota
AclPatternAny
AclPatternMatch
AclPatternLiteral
AclPatternPrefixed
)
AclPatternUnknown AclResourcePatternType = 0
AclPatternAny AclResourcePatternType = 1
AclPatternMatch AclResourcePatternType = 2
Expand Down

0 comments on commit 97d687c

Please sign in to comment.