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

8 lines
212 B
C#

using InnovEnergy.SysTools.Remote;
namespace InnovEnergy.SysTools.Edges;
public static class StringToRemotePath
{
public static RemotePath At(this String path, SshHost host) => new RemotePath(host, path);
}