mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-06 16:32:35 +00:00
9 lines
104 B
PHP
9 lines
104 B
PHP
<?php
|
|
|
|
namespace App\SSH\Services;
|
|
|
|
interface ServiceInterface
|
|
{
|
|
public function install(): void;
|
|
}
|