Files
jumpserver/apps/common/urls/api_urls.py
2026-04-27 18:19:36 +08:00

15 lines
316 B
Python

# -*- coding: utf-8 -*-
#
from django.urls import path
from django.conf import settings
from .. import api
app_name = 'common'
urlpatterns = [
path('resources/cache/', api.ResourcesIDCacheApi.as_view(), name='resources-cache'),
path('countries/', api.CountryListApi.as_view(), name='resources-cache'),
]