6 lines
205 B
Python
6 lines
205 B
Python
from django.urls import path
|
|
from .views import YourTrading212View # Replace with actual view class
|
|
|
|
urlpatterns = [
|
|
path('your-endpoint/', YourTrading212View.as_view(), name='trading212-endpoint'),
|
|
] |