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.
17 lines
377 B
17 lines
377 B
package dao |
|
|
|
import ( |
|
"context" |
|
"strconv" |
|
|
|
"go-common/library/log" |
|
) |
|
|
|
// PubLabour pub labour answer log msg into databus. |
|
func (d *Dao) PubLabour(c context.Context, aid int64, msg interface{}) (err error) { |
|
key := strconv.FormatInt(aid, 10) |
|
if err = d.dbusLabour.Send(c, key, msg); err != nil { |
|
log.Error("PubLabour.Pub(%s, %v) error (%v)", key, msg, err) |
|
} |
|
return |
|
}
|
|
|