mirror of
https://github.com/fergalmoran/dss.git
synced 2026-04-02 19:05:03 +00:00
13 lines
411 B
Python
13 lines
411 B
Python
import logging
|
|
from django.conf.urls import url
|
|
from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned
|
|
from tastypie import fields
|
|
from tastypie.http import HttpGone, HttpMultipleChoices
|
|
from tastypie.resources import ModelResource
|
|
from tastypie.utils import trailing_slash
|
|
|
|
|
|
class BackboneCompatibleResource(ModelResource):
|
|
logger = logging.getLogger(__name__)
|
|
pass
|