mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 21:24:58 +00:00
15 lines
367 B
C#
15 lines
367 B
C#
#pragma warning disable IDE0130 // Namespace does not match folder structure
|
|
// ReSharper disable once CheckNamespace
|
|
namespace ElectronNET.API
|
|
{
|
|
internal static class BridgeConnector
|
|
{
|
|
public static SocketIoFacade Socket
|
|
{
|
|
get
|
|
{
|
|
return ElectronNetRuntime.GetSocket();
|
|
}
|
|
}
|
|
}
|
|
} |