Create a RESTful API server which implements 1 endpoint:
Checks whether a date is a working day in UK or not.
/working_day/:date
GET
Required
date=[string:YYYY-m-d]
None
Code: 200
Content: { working_day : true }
Code: 400 BAD REQUEST
Content: { error : { code: 400, message: "wrong date format" }}