mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-01-12 08:58:15 +01:00
12 lines
339 B
C#
12 lines
339 B
C#
using Phantom.Common.Data;
|
|
using Phantom.Utils.Rpc;
|
|
using Phantom.Utils.Rpc.Runtime.Tls;
|
|
|
|
namespace Phantom.Controller.Services.Agents;
|
|
|
|
sealed class AgentConnectionKeys(RpcCertificateThumbprint certificateThumbprint) {
|
|
public ConnectionKey Get(AuthToken authToken) {
|
|
return new ConnectionKey(certificateThumbprint, authToken);
|
|
}
|
|
}
|