blob: 601eeabbfcc2eab402aa81b1f4de2b7b8c5dd27a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Object Store API
================
* http://api.django-rest-framework.org/object-store/
This example shows an object store API that can be used to store arbitrary serializable content.
``urls.py``
.. include:: ../../examples/objectstore/urls.py
:literal:
``views.py``
.. include:: ../../examples/objectstore/views.py
:literal:
|