29 lines
656 B
C#
29 lines
656 B
C#
|
|
namespace LANCommander.Server.Hubs;
|
||
|
|
|
||
|
|
public partial class RpcHub
|
||
|
|
{
|
||
|
|
public async Task Server_GetStatusAsync(Guid serverId)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public async Task Server_UpdateStatusAsync(Guid serverId)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public async Task Server_StartAsync(Guid serverId)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public async Task Server_StopAsync(Guid serverId)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public async Task Server_LogAsync(Guid serverId, string message)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|