mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-05-18 20:41:07 +00:00
9 lines
187 B
Python
9 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
|