mirror of
https://github.com/github/codeql.git
synced 2026-04-23 07:45:17 +02:00
11 lines
151 B
Python
11 lines
151 B
Python
|
|
from django.conf.urls import url
|
|
import json
|
|
|
|
def safe(pickled):
|
|
return json.loads(pickled)
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<object>.*)$', safe)
|
|
]
|