Innovenergy_trunk/csharp/Lib/SysTools/Edges/SshHostToRemoteCommand.cs

11 lines
260 B
C#
Raw Normal View History

using InnovEnergy.Lib.SysTools.Remote;
2023-02-16 12:57:06 +00:00
namespace InnovEnergy.Lib.SysTools.Edges;
2023-02-16 12:57:06 +00:00
public static class SshHostToRemoteCommand
{
public static RemoteCommand Command(this SshHost host, SysPath path)
{
return new RemoteCommand(host, path);
}
}