Create API CRUD for Task
Changes Added CRUD Endpoints: POST /api/v1/task/add: Create a new task with title, description, and status. GET /api/v1/tasks: Retrieve a list of all tasks. GET /api/v1/task/{id}: Retrieve details of a specific task by ID. PUT /api/v1/task/update/{id}: Update an existing task by ID. DELETE /api/v1/task/delete/{id}: Delete a task by ID. Added Run Task Endpoint: POST /api/v1/task/{id}/run: Execute a task (e.g., mark as completed or trigger a task-specific action).