This viewset automatically provides `list`, `create`, `retrieve`,
`update` and `destroy` actions.

Additionally we also provide an extra `highlight` action.

GET /api/v1/snippets/319/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "http://demo.scanapi.dev/api/v1/snippets/319/?format=api",
    "id": 319,
    "highlight": "http://demo.scanapi.dev/api/v1/snippets/319/highlight/?format=api",
    "owner": "roberto.nunes",
    "title": "Calculator2",
    "code": "def add(x, y):\r\n    return x + y\r\n\r\ndef subtract(x, y):    \r\n    return x - y\r\n\r\ndef multiply(x, y):\r\n    return x * y\r\n\r\ndef divide(x, y):\r\n    return x / y",
    "linenos": true,
    "language": "python",
    "style": "monokai"
}