overflow_discovery/rpc/notify/notify_handlers.go
crusader 3037d18a5f ing
2017-11-23 18:34:07 +09:00

18 lines
283 B
Go

package notify
import (
"git.loafle.net/commons_go/rpc/notify"
"git.loafle.net/commons_go/rpc/protocol/json"
)
func NewNotifyHandler() NotifyHandler {
nh := &NotifyHandlers{}
nh.Codec = json.NewClientCodec()
return nh
}
type NotifyHandlers struct {
notify.NotifyHandlers
}