package api import ( "cafe/hub" "github.com/gin-gonic/gin" ) type Api struct { Router *gin.Engine Hub hub.Hub } type errorResponse struct { Error string `json:"error" validate:"required"` }