aboutsummaryrefslogtreecommitdiff
path: root/dbstore/cpesearchtype.go
blob: 45865dc56e74f2facc0b60a6e48206e070f75186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// database storage
package dbstore

//go:generate stringer -linecomment -type=CpeSearchType

// CPE search type
type CpeSearchType byte

const (
  CpeSearchAll CpeSearchType = iota //cpe-search-all
  CpeSearchTitle // cpe-search-title
  CpeSearchRef // cpe-search-ref
)