initial commit

This commit is contained in:
2021-11-20 18:53:21 -06:00
parent 5e7b35926d
commit 9445940df2
15 changed files with 338 additions and 1 deletions

9
teamsnap/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from django.urls import path, include
from . import views
urlpatterns = [
path('events', views.EventsListView.as_view(), name="teamsnap events list")
]