2024-11-17 15:01:19 +00:00
|
|
|
from django.http import HttpResponse
|
|
|
|
from django.views import View
|
2020-12-29 16:26:48 +00:00
|
|
|
|
2021-02-20 14:17:52 +00:00
|
|
|
|
2024-11-17 15:01:19 +00:00
|
|
|
class TelegramWebhookView(View):
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
# TODO: Implement the logic to handle the incoming message
|
|
|
|
return HttpResponse(status=200)
|