0
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-06-30 18:42:55 +00:00
rss-bridge/lib/ActionInterface.php
2023-09-25 21:18:48 +02:00

10 lines
129 B
PHP

<?php
interface ActionInterface
{
/**
* @return string|Response
*/
public function execute(array $request);
}