webhooks-8.x-1.x-dev/modules/webhook/src/WebhookInterface.php
modules/webhook/src/WebhookInterface.php
<?php
declare(strict_types=1);
namespace Drupal\webhook;
use Drupal\Core\Entity\ContentEntityInterface;
/**
* Provides an interface defining a webhook entity type.
*/
interface WebhookInterface extends ContentEntityInterface {
}
