from imported_app.urls import router as imported_app_router
Then in urlpatterns I have the following
urlpatterns = [url(r"^api/", include(imported_app_router.urls)),]
But for whatever reason it will not show up in the url list for browesable api when I run django server
I am either missing something