8 lines
220 B
C#
8 lines
220 B
C#
|
using InnovEnergy.Lib.SysTools.Remote;
|
||
|
|
||
|
namespace InnovEnergy.Lib.SysTools.Edges;
|
||
|
|
||
|
public static class StringToRemotePath
|
||
|
{
|
||
|
public static RemotePath At(this String path, SshHost host) => new RemotePath(host, path);
|
||
|
}
|