mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
Except for dataflow (where we have a lot of changes, and I don't want to introduce lots of merge conflicts right now).
13 lines
268 B
Python
13 lines
268 B
Python
from django.urls import path
|
|
from django.http import HttpResponse
|
|
from trender import TRender
|
|
|
|
def trender(request):
|
|
template = request.GET['template']
|
|
compiled = TRender(template)
|
|
return HttpResponse(compiled)
|
|
|
|
urlpatterns = [
|
|
path('', trender)
|
|
]
|