20 lines
No EOL
490 B
C#
20 lines
No EOL
490 B
C#
using AutoMapper;
|
|
using LANCommander.SDK.Rpc.Client;
|
|
using LANCommander.SDK.Rpc.Server;
|
|
using LANCommander.Server.Services;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using ZiggyCreatures.Caching.Fusion;
|
|
|
|
namespace LANCommander.Server.Hubs;
|
|
|
|
public partial class RpcHub(
|
|
IFusionCache cache,
|
|
IMapper mapper,
|
|
SDK.Client client,
|
|
ChatService chatService,
|
|
GameService gameService,
|
|
ScriptService scriptService,
|
|
ServerService serverService) : Hub<IRpcClient>, IRpcHub
|
|
{
|
|
|
|
} |