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 )