notice/apps/envs/urls.py

17 lines
346 B
Python
Raw Normal View History

2021-09-29 09:52:00 +08:00
# -*- coding: utf-8 -*-
# @Time : 2021/9/16 23:14
# @Author : Flora.Chen
# @File : urls.py
# @Software: PyCharm
# @Desc:
from django.urls import path, re_path
from rest_framework.routers import SimpleRouter
from .views import EnvView
router = SimpleRouter()
router.register(r"envs", EnvView)
urlpatterns = []
urlpatterns += router.urls