mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
8 lines
309 B
Python
8 lines
309 B
Python
from django.urls import include, path
|
|
from .views import StudyGroupListView, StudyGroupListNearView, StudyGroupMembershipViewSet
|
|
|
|
urlpatterns = [
|
|
path('', StudyGroupListView.as_view()),
|
|
path('near/', StudyGroupListNearView.as_view()),
|
|
path('membership/', StudyGroupMembershipViewSet.as_view()),
|
|
]
|