8 lines
133 B
Python
8 lines
133 B
Python
from django.urls import path
|
|
|
|
from ..views.oj import MessageAPI
|
|
|
|
urlpatterns = [
|
|
path("message", MessageAPI.as_view()),
|
|
]
|