mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
5 lines
154 B
Python
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)]
|