mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-05 12:55:44 +01:00
6 lines
113 B
Python
6 lines
113 B
Python
|
|
from django.conf.urls import url
|
||
|
|
import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
url(r'^$', views.terminal, name='terminal'),
|
||
|
|
]
|