123456789101112131415161718192021222324252627282930313233 |
- package main
- type (
- Config struct {
- CornExp string `json:"cornexp"`
- Db struct {
- Address string `json:"address"`
- DbName string `json:"dbName"`
- DbSize int `json:"dbSize"`
- ColName string `json:"colName"`
- TemporaryColName string `json:"temporaryColName"`
- } `json:"db"`
- Bidding struct {
- Address string `json:"address"`
- DbName string `json:"dbName"`
- DbSize int `json:"dbSize"`
- UserName string `json:"username"`
- Password string `json:"password"`
- ReplSet string `json:"replSet"`
- } `json:"bidding"`
- Es struct {
- Address string `json:"address"`
- DbSize int `json:"dbSize"`
- Index string `json:"index"`
- IType string `json:"iType"`
- Version string `json:"version"`
- UserName string `json:"userName"`
- Password string `json:"password"`
- } `json:"es"`
- LastTime int64 `json:"lastTime"`
- Rule string `json:"rule"`
- }
- )
|