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

11 lines
252 B
C#
Raw Normal View History

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