Skip to content

Commit

Permalink
Convert to iota
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Mar 12, 2020
1 parent fc66547 commit 6e04b5f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions processor/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import (
)

const (
Default int64 = 0
Quoted int64 = 1
Regex int64 = 2
Negated int64 = 3
Fuzzy1 int64 = 4
Fuzzy2 int64 = 5
Default = iota
Quoted
Regex
Negated
Fuzzy1
Fuzzy2
)

type searchParams struct {
Expand Down

0 comments on commit 6e04b5f

Please sign in to comment.