lib.itmens/common/urls.py
2024-12-30 08:25:10 -05:00

14 lines
370 B
Python

from django.urls import path, re_path
from .views import *
app_name = "common"
urlpatterns = [
path("", home),
path("search", search, name="search"),
path("home/", home, name="home"),
path("me/", me, name="me"),
path("nodeinfo/2.0/", nodeinfo2),
path("developer/", console, name="developer"),
re_path("^~neodb~(?P<uri>.+)", ap_redirect),
]