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.
|
package medal |
|
|
|
import ( |
|
"context" |
|
"go-common/app/service/main/usersuit/model" |
|
) |
|
|
|
// Grant sent a medal to user. |
|
func (d *Dao) Grant(c context.Context, mid, nid int64) (err error) { |
|
err = d.suitRPC.MedalGrant(c, &model.ArgMIDNID{MID: mid, NID: nid}) |
|
return |
|
}
|
|
|