mirror of
https://github.com/etesync/server
synced 2024-11-18 23:08:08 +00:00
9 lines
230 B
Python
9 lines
230 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("", TemplateView.as_view(template_name="success.html")),
|
|
]
|