1
0
mirror of https://github.com/etesync/server synced 2024-10-31 20:58:54 +00:00
etesync-server/etebase_server/urls.py
2022-05-09 10:40:38 -05:00

14 lines
359 B
Python

import os
from django.conf import settings
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
urlpatterns = [
path("admin/", admin.site.urls),
path("", TemplateView.as_view(template_name="success.html")),
]