init push
This commit is contained in:
17
backend/api/conversation/v1/conversation.go
Normal file
17
backend/api/conversation/v1/conversation.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package v1
|
||||
|
||||
type GetConversationDetailReq struct {
|
||||
KbId string `query:"kb_id" json:"kb_id" validate:"required"`
|
||||
ID string `query:"id" json:"id" validate:"required"`
|
||||
}
|
||||
|
||||
type GetConversationDetailResp struct {
|
||||
}
|
||||
|
||||
type GetMessageDetailReq struct {
|
||||
KbId string `query:"kb_id" json:"kb_id" validate:"required"`
|
||||
ID string `query:"id" json:"id" validate:"required"`
|
||||
}
|
||||
|
||||
type GetMessageDetailResp struct {
|
||||
}
|
||||
Reference in New Issue
Block a user