(c *gin.Context, err ErrorResp, statusCode int)
| 53 | } |
| 54 | |
| 55 | func ReturnLumaError(c *gin.Context, err ErrorResp, statusCode int) { |
| 56 | common.Logger.Errorw("wrapper luma error", "statusCode", statusCode, "err", err) |
| 57 | c.JSON(statusCode, err) |
| 58 | } |
| 59 | |
| 60 | func GetLumaAuth() string { |
| 61 | return common.COOKIE |
no outgoing calls
no test coverage detected