vito/app/Contracts/SSHCommand.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

11 lines
154 B
PHP
Executable File

<?php
namespace App\Contracts;
interface SSHCommand
{
public function file(string $os): string;
public function content(string $os): string;
}