mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-07-14 02:01:31 -04:00
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
namespace Gazelle\API;
|
|
|
|
abstract class AbstractAPI extends \Gazelle\Base {
|
|
protected $config;
|
|
|
|
public function __construct(array $config) {
|
|
$this->config = $config;
|
|
}
|
|
|
|
abstract public function run();
|
|
}
|