mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 14:14:17 +00:00
8 lines
181 B
Python
Executable file
8 lines
181 B
Python
Executable file
from django.conf.urls import include, url
|
|
from pokemon_v2 import urls as pokemon_v2_urls
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
urlpatterns = [
|
|
url(r"^", include(pokemon_v2_urls)),
|
|
]
|