mirror of
https://ghproxy.net/https://github.com/netcccyun/dnsmgr.git
synced 2026-07-23 12:28:04 +08:00
12 lines
175 B
PHP
12 lines
175 B
PHP
<?php
|
|
|
|
namespace app\lib;
|
|
|
|
interface DeployInterface
|
|
{
|
|
function check();
|
|
|
|
function deploy($fullchain, $privatekey, $config, &$info);
|
|
|
|
function setLogger($func);
|
|
}
|