11 lines
260 B
C#
11 lines
260 B
C#
|
using InnovEnergy.Lib.SysTools.Remote;
|
||
|
|
||
|
namespace InnovEnergy.Lib.SysTools.Edges;
|
||
|
|
||
|
public static class SshHostToRemoteCommand
|
||
|
{
|
||
|
public static RemoteCommand Command(this SshHost host, SysPath path)
|
||
|
{
|
||
|
return new RemoteCommand(host, path);
|
||
|
}
|
||
|
}
|