Discover Packages
github.com/BrunoKrugel/echo-mcp
examples
complex
model
package
Version:
v0.1.11
Opens a new window with list of versions in this module.
Published: Mar 26, 2026
License: GPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type AppError struct {
Error string `json:"error"`
}
type PingPongResponse struct {
Message string `json:"message" example:"pong"`
}
type UserInfo struct {
Name string `json:"name"`
}
type UserPatchRequest struct {
ID string `json:"-" param:"id" validate:"required"`
Name string `json:"name" validate:"required"`
Status string `json:"status" validate:"required,oneof=active inactive"`
}
type UserRequest struct {
Info *UserInfo `json:"info" validate:"required"`
ID string `json:"id" validate:"required"`
}
type UserResponse struct {
ID string `json:"user_id"`
Status string `json:"status,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.