entity.go 128 B

123456789
  1. package entity
  2. type MsgInfoInput struct {
  3. Name string `json:"name"`
  4. }
  5. type MsgInfoOutput struct {
  6. Msg string `json:"msg"`
  7. }