You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
348 B
16 lines
348 B
package conf |
|
|
|
import xtime "go-common/library/time" |
|
|
|
// Search related config def. |
|
type Search struct { |
|
URL string |
|
MainVer string |
|
SugNum int |
|
SugPGCBuild int |
|
SugType string |
|
Highlight string // use highlight or not |
|
HotwordFre xtime.Duration // hotword reload frequency |
|
ResultURL string |
|
UserSearch string |
|
}
|
|
|