refactor the ammicoApi service and put it into a specific module (ammicoCommon). Use factory to serve the resources
from django.conf.urls import patterns, url
from rest_framework.authtoken import views
from authentication.views import User, ObtainAuthToken
urlpatterns = patterns('',
url(r'^user', User.as_view()),
url(r'^api-token-auth', ObtainAuthToken.as_view())
)