mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 07:59:20 +00:00
13 lines
274 B
PHP
13 lines
274 B
PHP
<?php
|
|
|
|
namespace App\Utils\Library\Templates;
|
|
|
|
interface DNS
|
|
{
|
|
public function store(string $ip, string $type): bool;
|
|
|
|
public function update(string $latest_ip, string $original_ip, string $type): bool;
|
|
|
|
public function destroy(string $type, string $ip): int;
|
|
}
|