mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
11 lines
181 B
PHP
11 lines
181 B
PHP
<?php
|
|
|
|
abstract class AbstractAPI {
|
|
protected $db;
|
|
|
|
public function __construct(DB_MYSQL $db) {
|
|
$this->db = $db;
|
|
}
|
|
|
|
abstract public function run();
|
|
} |