mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-14 08:23:27 +00:00
14 lines
242 B
PHP
14 lines
242 B
PHP
<?php
|
|
|
|
namespace App\Utils\Library\Templates;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
interface Gateway
|
|
{
|
|
public function purchase(Request $request): JsonResponse;
|
|
|
|
public function notify(Request $request);
|
|
}
|