7 lines
130 B
Python
7 lines
130 B
Python
from django.urls import path
|
|
|
|
from source.apps.ctf import views
|
|
|
|
urlpatterns = [
|
|
path("", views.homepage, name='homepage'),
|
|
]
|