Source code for app_webhook.views

from django.shortcuts import render, HttpResponse

# Create your views here.

[docs]def alive(request): return HttpResponse('alive!')