mirror of
https://github.com/quantum5/qlinks.git
synced 2025-08-02 04:08:14 -04:00
11 lines
246 B
Python
11 lines
246 B
Python
from django.conf import settings
|
|
from django_hosts import host, patterns
|
|
|
|
from qlinks.urls import admin, short
|
|
|
|
host_patterns = patterns(
|
|
'',
|
|
host(settings.QLINKS_ADMIN_HOST, admin, name='admin'),
|
|
host('', short, name='shortener'),
|
|
)
|