Files
Ragon/Ragon/Sources/AuthorizationManager.cs
T
2022-04-30 23:11:48 +04:00

11 lines
179 B
C#

using System;
namespace Ragon.Core;
public class AuthorizationManager
{
public virtual bool OnAuthorize(uint peerId, ref ReadOnlySpan<byte> payload)
{
return true;
}
}