pcm-coordinator/client/notice.go

10 lines
168 B
Go

package client
type NoticeOptions struct {
pushNoticeReq PushNoticeReq
}
type Notice interface {
PushNotice(pushNoticeReq PushNoticeReq) (*PushNoticeResp, error)
}