1
0
mirror of https://github.com/etesync/server synced 2024-11-19 07:18:08 +00:00
etesync-server/etebase_server/urls.py

14 lines
359 B
Python
Raw Normal View History

import os
2020-09-22 15:00:28 +00:00
from django.conf import settings
2020-07-05 11:57:38 +00:00
from django.contrib import admin
from django.urls import path
from django.views.generic import TemplateView
from django.views.static import serve
from django.contrib.staticfiles import finders
2020-07-05 11:57:38 +00:00
urlpatterns = [
path("admin/", admin.site.urls),
path("", TemplateView.as_view(template_name="success.html")),
2020-07-05 11:57:38 +00:00
]