bb-plane-fork/apps/server/plane/web/urls.py
sriram veeraghanta 944b873184
chore: move all services inside the apps folder (#7321)
* chore: move all services inside the apps folder

* chore: rename apiserver to server
2025-07-03 00:44:13 +05:30

4 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)]