Created
July 11, 2019 13:01
-
-
Save aballah-chamakh/ecf9e46bd8596feeaedc895d05595c35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.contrib import admin | |
| from django.urls import path,include | |
| from rest_framework_jwt.views import obtain_jwt_token,refresh_jwt_token | |
| # from Door import urls as DoorUrls | |
| urlpatterns = [ | |
| path('admin/', admin.site.urls), | |
| path('api/',include('account.urls')), | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment