mirror of https://github.com/snachodog/mybuddy.git
15 lines
329 B
Python
15 lines
329 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url, include
|
|
from django.contrib import admin
|
|
|
|
from core import views
|
|
|
|
urlpatterns = [
|
|
url(r'^baby/add/$', views.BabyFormView.as_view(), name='baby_add'),
|
|
|
|
url(r'^admin/', admin.site.urls),
|
|
url(r'', include('api.urls')),
|
|
]
|