123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // Code generated by protoc-gen-bm v0.1, DO NOT EDIT.
- // source: api/http/v1/dm.proto
- /*
- Package v1 is a generated blademaster stub package.
- This code was generated with go-common/app/tool/bmgen/protoc-gen-bm v0.1.
- It is generated from these files:
- api/http/v1/dm.proto
- */
- package v1
- import (
- "context"
- bm "go-common/library/net/http/blademaster"
- "go-common/library/net/http/blademaster/binding"
- )
- // to suppressed 'imported but not used warning'
- var _ *bm.Context
- var _ context.Context
- var _ binding.StructValidator
- // ============
- // DM Interface
- // ============
- type DM interface {
- // `method:"POST"`
- SendMsg(ctx context.Context, req *SendDMReq) (resp *SendMsgResp, err error)
- // `method:"POST"`
- GetHistory(ctx context.Context, req *HistoryReq) (resp *HistoryResp, err error)
- }
- var v1DMSvc DM
- // @params SendDMReq
- // @router POST /xlive/web-room/v1/dM/SendMsg
- // @response SendMsgResp
- func dMSendMsg(c *bm.Context) {
- p := new(SendDMReq)
- if err := c.BindWith(p, binding.Default(c.Request.Method, c.Request.Header.Get("Content-Type"))); err != nil {
- return
- }
- resp, err := v1DMSvc.SendMsg(c, p)
- c.JSON(resp, err)
- }
- // @params HistoryReq
- // @router POST /xlive/web-room/v1/dM/GetHistory
- // @response HistoryResp
- func dMGetHistory(c *bm.Context) {
- p := new(HistoryReq)
- if err := c.BindWith(p, binding.Default(c.Request.Method, c.Request.Header.Get("Content-Type"))); err != nil {
- return
- }
- resp, err := v1DMSvc.GetHistory(c, p)
- c.JSON(resp, err)
- }
- // RegisterV1DMService Register the blademaster route with middleware map
- // midMap is the middleware map, the key is defined in proto
- func RegisterV1DMService(e *bm.Engine, svc DM, midMap map[string]bm.HandlerFunc) {
- v1DMSvc = svc
- e.POST("/xlive/web-room/v1/dM/SendMsg", dMSendMsg)
- e.POST("/xlive/web-room/v1/dM/GetHistory", dMGetHistory)
- }
|