mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
12 lines
203 B
PHP
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;
|
|
}
|