Files
ops-Gazelle/app/API/AbstractAPI.php
2025-02-24 14:37:56 +01:00

12 lines
203 B
PHP

<?php
namespace Gazelle\API;
abstract class AbstractAPI extends \Gazelle\Base {
public function __construct(
protected array $config,
) {}
abstract public function run(): array;
}