API Restful to manage students
- GET /students - List all students
- POST /students - Create a student
- GET /students/:id - Show a student
- PUT /students/:id - Update a student
- DELETE /students/:id - Delete a student
- GET /students/active=<true/false> - List all active/non-active students
- Name string
- CPF int
- Email string
- Age int
- Active bool
- curl localhost:8081/students