mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 21:57:47 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using WeOnlyDo.Client;
|
||||
|
||||
namespace Roblox.Ssh
|
||||
{
|
||||
public static class Factory
|
||||
{
|
||||
public static SSH Create(string host, int port, string username, string password)
|
||||
{
|
||||
return new SSH()
|
||||
{
|
||||
Hostname = host,
|
||||
Port = port,
|
||||
Authentication = SSH.Authentications.Password,
|
||||
Login = username,
|
||||
Password = password
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user