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.
34 lines
804 B
34 lines
804 B
package dataplatform |
|
|
|
import ( |
|
"go-common/app/job/main/growup/conf" |
|
"go-common/library/database/sql" |
|
xhttp "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// Dao is redis dao. |
|
type Dao struct { |
|
c *conf.Config |
|
db *sql.DB |
|
url string |
|
spyURL string |
|
bgmURL string |
|
basicURL string |
|
client *xhttp.Client |
|
} |
|
|
|
// New is new redis dao. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
c: c, |
|
db: sql.NewMySQL(c.Mysql.Growup), |
|
// client |
|
client: xhttp.NewClient(c.DPClient), |
|
url: c.Host.DataPlatform + "/avenger/api/38/query", |
|
spyURL: c.Host.DataPlatform + "/avenger/api/51/query", |
|
// bgmURL: c.Host.DataPlatform + "/avenger/api/81/query", |
|
bgmURL: c.Host.DataPlatform + "/avenger/api/95/query", |
|
basicURL: c.Host.DataPlatform + "/avenger/api/200/query", |
|
} |
|
return |
|
}
|
|
|