# Functions
Uses "(*gin.Context).HTML(http.StatusOK, name, v)" to perform response.
Uses "(*gin.Context).HTML(code, name, v)" to perform response.
Output the value or not found error if the value is not viable.
Uses "(*gin.Context).JSON(http.StatusOK, v)" to perform response.
Uses "(*gin.Context).JSON(code, v)" to perform response.
Output the value or not found error if the value is not viable.
Constructs default configuration of MVC framework.
Constructs a new builder with configuration.
Uses "(*gin.Context).String(http.StatusOK, v)" to perform response.
Uses "(*gin.Context).String(code, v)" to perform response.
Output the value or not found error if the value is not viable.
Uses "(*gin.Context).XML(http.StatusOK, v)" to perform response.
Uses "(*gin.Context).XML(code, v)" to perform response.
Output the value or not found error if the value is not viable.
Uses "(*gin.Context).YAML(http.StatusOK, v)" to perform response.
Uses "(*gin.Context).YAML(code, v)" to perform response.
Output the value or not found error if the value is not viable.
# Variables
No description provided by the author
# Interfaces
Main interface for binding context.
Could be any type of function.
Main interface for generating response.
# Type aliases
Function type of "ContextBuilder".
Function version of "OutputBody".