reorganized viewsets into their own files

This commit is contained in:
Edward Tirado Jr 2025-07-02 16:58:44 -05:00
parent 83982877c3
commit 2e7dbe4ddc
13 changed files with 330 additions and 277 deletions

View file

@ -0,0 +1,4 @@
from .group import GroupViewSet
from .user import UserViewSet
__all__ = ["GroupViewSet", "UserViewSet"]