mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-06 22:42:49 +01:00
17 lines
378 B
C#
17 lines
378 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace DHT.Server.Database;
|
|
|
|
[SuppressMessage("ReSharper", "ArrangeObjectCreationWhenTypeNotEvident")]
|
|
public sealed class DummyDatabaseFile : IDatabaseFile {
|
|
public static DummyDatabaseFile Instance { get; } = new();
|
|
|
|
public string Path => "";
|
|
|
|
private DummyDatabaseFile() {}
|
|
|
|
public void Vacuum() {}
|
|
|
|
public void Dispose() {}
|
|
}
|