11 lines
273 B
Python
11 lines
273 B
Python
from django.urls import path, re_path
|
|
|
|
from .views import *
|
|
|
|
app_name = "social"
|
|
urlpatterns = [
|
|
path("", feed, name="feed"),
|
|
path("data", data, name="data"),
|
|
path("notification", notification, name="notification"),
|
|
path("events", events, name="events"),
|
|
]
|