Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 552 Bytes

README.md

File metadata and controls

29 lines (25 loc) · 552 Bytes

Generate annual calendar

End Point

Method Path Query Description
/ ?=year Generate Annual

JSON Response Schema

{
  "status": true,
  "message": "berhasil",
  "data": [
    {
      "month": "januari",
      "dates": [
        {
          "date": "2024-01-01",
          "weekend": false
        },
        ...
        ...
      ]
    }
  ]
}