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

11 lines
246 B
C#

using InnovEnergy.Lib.SysTools.Remote;
namespace InnovEnergy.Lib.SysTools.Edges;
public static class SysPathToRemotePath
{
public static RemotePath At(this SysPath path, SshHost host)
{
return new RemotePath(host, path);
}
}