mirror of
https://gh.wpcy.net/https://github.com/netcccyun/dnsmgr.git
synced 2026-05-31 00:15:01 +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);
|
|
}
|