Files
plane/apiserver/plane/web/urls.py
2025-05-09 20:53:13 +05:30

5 lines
154 B
Python

from django.urls import path
from plane.web.views import robots_txt, health_check
urlpatterns = [path("robots.txt", robots_txt), path("", health_check)]