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