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.
22 lines
407 B
22 lines
407 B
package dm |
|
|
|
import ( |
|
"go-common/app/job/main/activity/conf" |
|
bm "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// Dao dao struct. |
|
type Dao struct { |
|
// http |
|
broadcastURL string |
|
httpCli *bm.Client |
|
} |
|
|
|
// New return dm dao instance. |
|
func New(c *conf.Config) (d *Dao) { |
|
d = &Dao{ |
|
broadcastURL: "http://api.bilibili.co/x/internal/chat/push/room", |
|
httpCli: bm.NewClient(c.HTTPClient), |
|
} |
|
return |
|
}
|
|
|