<?php

declare(strict_types=1);

namespace GNexus\GAuth\Contract;

use GNexus\GAuth\DTO\WebhookEvent;

interface WebhookParserInterface
{
    public function parse(string $rawBody): WebhookEvent;
}

