17 lines
346 B
Python
17 lines
346 B
Python
# -*- 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
|
|
|