You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
384 B

from django.contrib import admin
from django.urls import include, path
from hc.accounts.views import login as hc_login
urlpatterns = [
path('admin/login/', hc_login),
path('admin/', admin.site.urls),
path('accounts/', include('hc.accounts.urls')),
path('', include('hc.api.urls')),
path('', include('hc.front.urls')),
path('', include('hc.payments.urls'))
]