10 lines
343 B
Python
10 lines
343 B
Python
from django.urls import include, path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import ChatmessageView, ChatRoomView
|
|
|
|
router = DefaultRouter()
|
|
router.register("rooms", ChatRoomView, basename="chat-rooms")
|
|
router.register("messages", ChatmessageView, basename="chat-messages")
|
|
urlpatterns = [path("", include(router.urls))]
|