package controller type BackJackResponse struct { Code int Description string } func NewBlackJackResponse(code int, description string) *BackJackResponse { return &BackJackResponse{ Code: code, Description: description, } }