Folder that holds database for future plans of all contentes of Plex

Library and system info.
This commit is contained in:
2016-12-08 11:47:48 +01:00
parent 94041dfc5b
commit 41000e69b9
39 changed files with 352 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @Author: KevinMidboe
# @Date: 2016-11-23 20:43:37
# @Last Modified by: KevinMidboe
# @Last Modified time: 2016-11-23 20:43:50
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.index, name='index'),
]