mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-05-18 01:21:06 +00:00
8 lines
199 B
Python
8 lines
199 B
Python
from django.conf.urls import include, url
|
|
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
url(r'^', include('posts.urls', namespace='posts')),
|
|
]
|