15 lines
303 B
Python
15 lines
303 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
@Remark: 地点标签模块的路由文件
|
|
"""
|
|
|
|
from django.urls import path, re_path
|
|
from rest_framework import routers
|
|
from .views import PlaceViewSet
|
|
|
|
map_url = routers.SimpleRouter()
|
|
map_url.register(r'places', PlaceViewSet)
|
|
|
|
urlpatterns = []
|
|
urlpatterns += map_url.urls |