12345678910111213141516 |
- # -*- encoding: utf-8 -*-
- """
- @File : roomumy_url.py
- @Time : 2024-10-7 14:37:30
- @Author : peng
- @Email :
- @Software: PyCharm
- """
- from django.urls import re_path
- from Roomumy.Controller import BabyController, FeedDiaryController
- urlpatterns = [
- re_path(r'^baby/(?P<operation>.*)$', BabyController.BabyView.as_view()),
- re_path(r'^feed-diary/(?P<operation>.*)$', FeedDiaryController.FeedDiaryView.as_view()),
- ]
|