chore(aa): cleanup.

This commit is contained in:
Alexandre Pujol 2024-05-28 18:22:14 +01:00
parent 90087be509
commit e33c1243cc
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 9 additions and 9 deletions

View file

@ -5,7 +5,7 @@
package aa
const (
tokALL = "all"
ALL Kind = "all"
)
type All struct {
@ -32,6 +32,6 @@ func (r *All) Constraint() constraint {
return blockKind
}
func (r *All) Kind() string {
return tokALL
func (r *All) Kind() Kind {
return ALL
}