acl: make MatchType's constants public back

This commit is contained in:
Pavel Korotkov 2020-07-07 23:03:53 +03:00
parent f826517207
commit 2fba8cb7b3
3 changed files with 11 additions and 7 deletions

View file

@ -2,8 +2,12 @@ package acl
const (
_ MatchType = iota
stringEqual
stringNotEqual
// StringEqual is a MatchType of string equality.
StringEqual
// StringNotEqual is a MatchType of string inequality.
StringNotEqual
)
const (