8 lines
212 B
C#
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);
|
||
|
}
|