Skip to content

Instantly share code, notes, and snippets.

@Chukslord1
Created July 31, 2021 13:40
Show Gist options
  • Save Chukslord1/e8201ef5324fd88900b1db27fcc47585 to your computer and use it in GitHub Desktop.
Save Chukslord1/e8201ef5324fd88900b1db27fcc47585 to your computer and use it in GitHub Desktop.
Agora Video Application
from django.conf import settings
from django.conf.urls.static import static
from django.urls import path, include
from django.conf.urls.static import static
from . import views
app_name = "APP"
urlpatterns = [
path("", views.index, name="index"),
path("index", views.index, name="index"),
path("schedule", views.schedule, name="schedule"),
path("success/", views.success, name="success"),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment