# Functions
No description provided by the author
No description provided by the author
No description provided by the author
func Search(c *gin.Context) {
status := c.Query("status")
users, err := services.UsersService.SearchUser(status)
if err != nil {
c.JSON(err.Status(), err)
return
}
c.JSON(http.StatusOK, users.Marshall((c.GetHeader("X-Public") == "true")))
}
*/.
No description provided by the author
No description provided by the author