mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-05-10 00:24:47 +00:00
8 lines
187 B
Python
8 lines
187 B
Python
from rest_framework.routers import SimpleRouter
|
|
|
|
from avatar.api.views import AvatarViewSets
|
|
|
|
router = SimpleRouter()
|
|
router.register("avatar", AvatarViewSets)
|
|
|
|
urlpatterns = router.urls
|