summaryrefslogtreecommitdiffstats
path: root/chat_api/urls.py
blob: 9fa601659b316013e9ae3c7960b37d9023ed5833 (plain)
1
2
3
4
5
6
from django.urls import path
from .views import GroupView

urlpatterns = [
    path('groups/', GroupView.as_view(), '')    
]