OnlineJudge/account/urls/user.py
2017-04-16 10:15:26 +08:00

11 lines
215 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from django.conf.urls import url
from ..views.user import UserProfileAPI
urlpatterns = [
url(r"^profile$", UserProfileAPI.as_view(), name="user_profile_api"),
]