dnsmgr/app/lib/DeployInterface.php
2024-12-21 17:07:51 +08:00

13 lines
187 B
PHP

<?php
namespace app\lib;
interface DeployInterface
{
function check();
function deploy($fullchain, $privatekey, $config, &$info);
function setLogger($func);
}