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