Project setup

This commit is contained in:
2020-04-21 19:56:17 -04:00
parent 82fe5b3a5e
commit 44ddef546b
20 changed files with 719 additions and 0 deletions

6
pokedex/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]