Add api application skeleton

This commit is contained in:
2014-12-23 09:29:58 +01:00
committed by Gergely Polonkai
parent c7722c418a
commit 6a20ba1935
3 changed files with 8 additions and 0 deletions

0
api/__init__.py Normal file
View File

7
api/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.conf.urls import patterns, url
from . import views
urlpatterns = patterns(
'',
)