8 lines
131 B
Python
8 lines
131 B
Python
|
|
from django.urls import re_path, include
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
re_path(r'.*', MiniProgEntryVView.as_view())
|
|
]
|