11 lines
246 B
C#
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);
|
||
|
}
|
||
|
}
|