pos-gis/app/Interfaces/APIInterface.php
2024-10-07 13:13:42 +07:00

15 lines
222 B
PHP

<?php
namespace App\Interfaces;
abstract class APIInterface
{
abstract function get($path, $auth = null);
abstract function post($path, $data, $auth = null);
abstract function delete($path, $auth = null);
}