diff --git a/msgio/views.py b/msgio/views.py index 139597f..c16b33a 100644 --- a/msgio/views.py +++ b/msgio/views.py @@ -1,2 +1,8 @@ +from django.http import HttpResponse +from django.views import View +class TelegramWebhookView(View): + def post(self, request, *args, **kwargs): + # TODO: Implement the logic to handle the incoming message + return HttpResponse(status=200)