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.
18 lines
352 B
18 lines
352 B
package client |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/service/main/usersuit/model" |
|
) |
|
|
|
const ( |
|
_pointFlag = "RPC.PointFlag" |
|
) |
|
|
|
// PointFlag obtain new pendant noify. |
|
func (s *Service2) PointFlag(c context.Context, arg *model.ArgMID) (res *model.PointFlag, err error) { |
|
res = new(model.PointFlag) |
|
err = s.client.Call(c, _pointFlag, arg, res) |
|
return |
|
}
|
|
|