File size: 200 Bytes
947c08e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11

from django.contrib import admin
from django.urls import path, include, re_path
from worker.jobs import ( session)



urlpatterns = [
    path('session/delete_outdated/', session.delete_outdated),
]