lib.itmens/common/urls.py
2024-06-10 17:36:45 -04:00

13 lines
327 B
Python

from django.urls import path, re_path
from .views import *
app_name = "common"
urlpatterns = [
path("", home),
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),
]