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.
13 lines
323 B
13 lines
323 B
package dao |
|
|
|
import ( |
|
"context" |
|
"go-common/library/net/metadata" |
|
) |
|
|
|
//ReplyReg 评论注册/冻结 |
|
func (d *Dao) ReplyReg(c context.Context, req map[string]interface{}) (err error) { |
|
ip := metadata.String(c, metadata.RemoteIP) |
|
_, err = replyHTTPCommon(c, d.HTTPClient, d.c.URLs["reply_reg"], "POST", req, ip) |
|
return |
|
}
|
|
|