11 lines
252 B
C#
11 lines
252 B
C#
|
using InnovEnergy.Lib.SysTools.Remote;
|
||
|
|
||
|
namespace InnovEnergy.Lib.SysTools.Edges;
|
||
|
|
||
|
public static class SshHostToRemotePath
|
||
|
{
|
||
|
public static RemotePath WithPath(this SshHost host, SysPath path)
|
||
|
{
|
||
|
return new RemotePath(host, path);
|
||
|
}
|
||
|
}
|