mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
18 lines
375 B
C#
18 lines
375 B
C#
using Content.Shared.Database;
|
|
|
|
namespace Content.Shared.Administration.Logs;
|
|
|
|
[Virtual]
|
|
public class SharedAdminLogManager : ISharedAdminLogManager
|
|
{
|
|
public virtual void Add(LogType type, LogImpact impact, ref LogStringHandler handler)
|
|
{
|
|
// noop
|
|
}
|
|
|
|
public virtual void Add(LogType type, ref LogStringHandler handler)
|
|
{
|
|
// noop
|
|
}
|
|
}
|