mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
8 lines
128 B
Python
8 lines
128 B
Python
from django.conf.urls.defaults import *
|
|
|
|
from sso import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^profile/', views.profile),
|
|
)
|