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

11 lines
238 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 SysPathToRemotePath
{
public static RemotePath At(this SysPath path, SshHost host)
{
return new RemotePath(host, path);
}
}